/* Laravel UI Basic Styles - Updated with Military Theme Colors */

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #0f0f0f;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.navbar-laravel {
    background-color: rgba(15, 15, 15, 0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    color: #d4af37 !important;
    font-weight: bold;
    text-decoration: none;
}

.nav-link {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #d4af37 !important;
}

.btn-primary {
    background: linear-gradient(45deg, #556b2f, #6b8e23);
    border: none;
    color: white;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #6b8e23, #556b2f);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(85, 107, 47, 0.4);
    color: white;
}

.btn-outline-primary {
    border: 2px solid #d4af37;
    color: #d4af37;
    background: transparent;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
}

.btn-outline-primary:hover {
    background: #d4af37;
    color: #0f0f0f;
    border-color: #d4af37;
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(45deg, #556b2f, #6b8e23);
    border: none;
    color: white;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #6b8e23, #556b2f);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(85, 107, 47, 0.4);
    color: white;
}

.card {
    background: rgba(45, 45, 45, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #556b2f, #6b8e23);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.4);
}

.card-header {
    background: rgba(85, 107, 47, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-weight: 600;
    color: #d4af37;
}

.card-body {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.card-title {
    color: #d4af37;
}

.card-text {
    color: #f5f5f5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

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

.text-secondary {
    color: #6c757d !important;
}

.text-muted {
    color: #f5f5f5 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.bg-primary {
    background: linear-gradient(45deg, #556b2f, #6b8e23) !important;
}

.bg-secondary {
    background: linear-gradient(45deg, #556b2f, #6b8e23) !important;
}

.badge {
    background: linear-gradient(45deg, #556b2f, #6b8e23) !important;
    color: white;
    border-radius: 15px;
    padding: 0.4rem 0.8rem;
}

.alert {
    background: rgba(45, 45, 45, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.alert-success {
    border-color: rgba(40, 167, 69, 0.3);
    background: rgba(40, 167, 69, 0.1);
}

.alert-danger {
    border-color: rgba(220, 53, 69, 0.3);
    background: rgba(220, 53, 69, 0.1);
}

.alert-warning {
    border-color: rgba(255, 193, 7, 0.3);
    background: rgba(255, 193, 7, 0.1);
}

.alert-info {
    border-color: rgba(23, 162, 184, 0.3);
    background: rgba(23, 162, 184, 0.1);
}

.form-control {
    background: rgba(45, 45, 45, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(45, 45, 45, 0.9);
    border-color: #d4af37;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    color: #ffffff;
}

.form-label {
    color: #d4af37;
    font-weight: 500;
}

.invalid-feedback {
    color: #dc3545;
}

.pagination .page-link {
    background: rgba(45, 45, 45, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #d4af37;
    border-radius: 10px;
    margin: 0 0.2rem;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: #d4af37;
    color: #0f0f0f;
    border-color: #d4af37;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(45deg, #556b2f, #6b8e23);
    border-color: #556b2f;
    color: white;
}

.pagination .page-item.disabled .page-link {
    background: rgba(45, 45, 45, 0.4);
    border-color: rgba(212, 175, 55, 0.1);
    color: #666;
}

/* Additional readability improvements */
p, div, span, li, td, th {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

h1, h2, h3, h4, h5, h6 {
    color: #d4af37 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Table improvements */
table {
    color: #ffffff !important;
}

table th {
    color: #d4af37 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

table td {
    color: #f5f5f5 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* List improvements */
ul, ol {
    color: #ffffff !important;
}

ul li, ol li {
    color: #f5f5f5 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Form improvements */
label {
    color: #d4af37 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Small text improvements */
small {
    color: #f5f5f5 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}
