:root {
    --text-primary: #000000;
    --text-secondary: #4d4d4d;
    --text-muted: #808080;
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --accent-primary: #2563eb;
    --accent-success: #10b981;
    --accent-warning: #f59e0b;
}

body {
    font-family: 'TT Travels', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    color: #000000;
    background: #ffffff;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.display-1, .display-2, .display-3, .display-4, .display-5,
.fw-bold, .fw-semibold, strong, b {
    font-family: 'TT Travels', sans-serif;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.text-muted {
    color: #4d4d4d !important;
}

.text-secondary {
    color: #4d4d4d !important;
}

.bg-light {
    background-color: #fafafa !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.bg-dark {
    background-color: #000000 !important;
    color: #ffffff !important;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3,
.bg-dark h4, .bg-dark h5, .bg-dark h6,
.bg-dark p, .bg-dark span {
    color: #ffffff !important;
}

.btn-primary {
    background: #4d4d4d !important;
    border-color: #4d4d4d !important;
    color: #ffffff !important;
    font-family: 'TT Travels', sans-serif;
    font-weight: 600;
    border-radius: 10px !important;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(77, 77, 77, 0.15);
}

.btn-primary:hover {
    background: #5a5a5a !important;
    border-color: #5a5a5a !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 77, 77, 0.25);
}

.btn-primary:hover * {
    color: #ffffff !important;
}

.btn-outline-primary {
    border: 2px solid #000000 !important;
    color: #000000 !important;
    background: transparent !important;
    font-family: 'TT Travels', sans-serif;
    font-weight: 600;
    border-radius: 0 !important;
    padding: 0.75rem 2rem;
}

.btn-outline-primary:hover {
    background: #000000 !important;
    color: #ffffff !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.btn-success {
    background: #10b981 !important;
    border-color: #10b981 !important;
    color: #ffffff !important;
}

.btn-success:hover {
    background: #059669 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-warning {
    background: #fbbf24 !important;
    border-color: #fbbf24 !important;
    color: #000000 !important;
}

.btn-warning:hover {
    background: #f59e0b !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #000000;
}

.form-control,
.form-select {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    color: #000000;
    font-family: 'TT Travels', sans-serif;
}

.form-control:focus,
.form-select:focus {
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    outline: none;
}

.badge {
    font-family: 'TT Travels', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.4rem 0.9rem;
}

.badge.bg-primary {
    background: #000000 !important;
    color: #ffffff !important;
}

.badge.bg-success {
    background: #10b981 !important;
    color: #ffffff !important;
}

.badge.bg-warning {
    background: #fbbf24 !important;
    color: #000000 !important;
}

.badge.bg-info {
    background: #3b82f6 !important;
    color: #ffffff !important;
}

.navbar {
    background: #ffffff !important;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-link {
    color: #4d4d4d !important;
    font-family: 'TT Travels', sans-serif;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: #000000 !important;
    background: #f5f5f5;
}

a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #000000;
}

.text-primary {
    color: #000000 !important;
}

.text-success {
    color: #10b981 !important;
}

.text-warning {
    color: #fbbf24 !important;
}

.text-info {
    color: #3b82f6 !important;
}

.border {
    border-color: #e5e5e5 !important;
}

.shadow-sm {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.shadow {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.shadow-lg {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
}

.auth-page {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    background: #f5f5f5;
}

.auth-card {
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    max-width: 420px;
    margin: 0 auto;
}

.auth-title {
    font-size: 1.8rem;
    letter-spacing: -0.02em;
}

.auth-subtitle {
    font-size: 0.95rem;
    color: #4d4d4d;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
    font-size: 0.85rem;
    color: #808080;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e5e5e5;
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

