﻿html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    width: 100%;
    height: 100%;
}

.importers-background {
    background-image: url('/Content/images/Importers/background.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    color: white;
}

    .importers-background > * {
        position: relative;
        z-index: 2;
    }

.importers-background {
    backdrop-filter: blur(2px);
}

.banner-text h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
}

.banner-text p {
    font-size: 14px;
    opacity: 0.9;
}

.banner-text strong {
    color: #CDA349;
}

.top-banner-style {
    padding: 15px;
    color: #FFFFFF;
    border-bottom: 4px solid #CDA349;
}

/* Auth card */

.auth-card {
    background: white;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

/* Title */

.auth-title {
    text-align: center;
    margin-bottom: 25px;
    color: #8C1D18;
}

/* Buttons */

.btn-login {
    background: #8C1D18;
    border: none;
}

    .btn-login:hover {
        background: #6e1512;
    }

/* Footer links */

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

    .auth-footer a {
        color: #8C1D18;
        font-weight: 500;
    }


/* Page Title */

.page-title {
    color: #8C1D18;
    font-weight: 600;
}


/* Categories */

.doc-category {
    margin-top: 35px;
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 5px solid #CDA349;
    font-weight: 600;
    color: #8C1D18;
}


/* Document Card */

.doc-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    background: white;
    transition: all .2s;
}

    .doc-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(0,0,0,0.08);
    }


/* Icon */

.doc-icon {
    font-size: 28px;
    color: #8C1D18;
    margin-top: 3px;
}

/* File type icon colors */

.icon-pdf {
    color: #E81123;
}

.icon-word {
    color: #2B579A;
}

.icon-excel {
    color: #217346;
}

.icon-powerpoint {
    color: #D24726;
}

.icon-zip {
    color: #F4B400;
}

.icon-jpg,
.icon-jpeg,
.icon-png,
.icon-gif {
    color: #FFB74D; 
}

.icon-file {
    color: #6c757d;
}


/* File type card accents */

.doc-pdf {
    border-left: 4px solid #E81123;
    background: #fff7f7;
}

.doc-word {
    border-left: 4px solid #2B579A;
    background: #f5f8ff;
}

.doc-excel {
    border-left: 4px solid #217346;
    background: #f4fbf6;
}

.doc-powerpoint {
    border-left: 4px solid #D24726;
    background: #fff6f4;
}

.doc-jpg {
    border-left: 4px solid #FFB74D;
    background: #fffaf0;
}

.doc-zip {
    border-left: 4px solid #F4B400;
    background: #fffbe6;
}

/* Body */

.doc-body h5 {
    font-size: 17px;
    margin-bottom: 6px;
}

.doc-desc {
    font-size: 14px;
    color: #666;
}


/* Metadata */

.doc-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}


/* Download Button */

.btn-download {
    background: #8C1D18;
    color: white;
    font-size: 13px;
    padding: 5px 12px;
}

    .btn-download:hover {
        background: #6f1512;
        color: white;
    }


/* Search */

.doc-search {
    max-width: 300px;
    float: right;
}

/* Sidebar */

.doc-sidebar {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
}


/* Sidebar title */

.sidebar-title {
    color: #8C1D18;
    font-weight: 600;
    margin-bottom: 15px;
}


/* Category list */

.doc-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .doc-category-list li {
        margin-bottom: 8px;
    }

    .doc-category-list a {
        display: flex;
        justify-content: space-between;
        padding: 8px 10px;
        border-radius: 5px;
        text-decoration: none;
        color: #333;
    }

        .doc-category-list a:hover {
            background: #f5f5f5;
        }

        .doc-category-list a.active {
            background: #8C1D18;
            color: white;
        }


/* document count */

.doc-count {
    background: #CDA349;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
}