/* Artemis Catalog Custom Styles */

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    color: #2c3e50;
}

/* Navbar Styles */
.navbar {
    background: #000000 !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #ffffff !important;
    letter-spacing: 1px;
}

.navbar-brand .artemis {
    color: #ffffff;
}

.navbar-brand .hali {
    color: #D4AF37;
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    color: #ffffff !important;
}

.nav-link:hover {
    color: #D4AF37 !important;
}

/* Card Styles */
.card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
    overflow: hidden;
    margin-bottom: 20px;
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.card-body {
    padding: 20px;
}

/* Button Styles */
.btn-primary {
    background: #000000;
    border: 1px solid #000000;
    border-radius: 4px;
    padding: 8px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #333333;
    border-color: #333333;
}

.btn-secondary {
    background: #6c757d;
    border: 1px solid #6c757d;
    border-radius: 4px;
    padding: 8px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-success {
    background: #28a745;
    border: 1px solid #28a745;
    border-radius: 4px;
    padding: 8px 16px;
    font-weight: 500;
}

.btn-danger {
    background: #dc3545;
    border: 1px solid #dc3545;
    border-radius: 4px;
    padding: 8px 16px;
    font-weight: 500;
}

.btn-warning {
    background: #ffc107;
    border: 1px solid #ffc107;
    border-radius: 4px;
    padding: 8px 16px;
    font-weight: 500;
    color: #212529;
}

/* Table Styles */
.table {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.table thead {
    background: #000000;
    color: white;
}

.table th {
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 12px;
}

.table td {
    vertical-align: middle;
    padding: 12px;
    border-top: 1px solid #dee2e6;
}

.table tbody tr:hover {
    background: #f8f9fa;
}

/* Admin Panel Styles */
.admin-header {
    background: #000000;
    color: white;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.admin-card {
    border-left: 4px solid #D4AF37;
}

/* Form Styles */
.form-control {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 8px 12px;
}

.form-control:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-label {
    font-weight: 500;
    color: #2c3e50;
}

/* Modal Styles */
.modal-content {
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 8px;
}

.modal-header {
    background: #000000;
    color: white;
    border-radius: 8px 8px 0 0;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-body {
        padding: 15px;
    }
    
    .table th, .table td {
        padding: 8px;
    }
}