/* Base styles */
body {
    background-color: #f5e9ff;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
.navbar {
    background: linear-gradient(135deg, #ff69b4 0%, #fff0f5 100%) !important;
    box-shadow: 0 2px 10px rgba(255, 105, 180, 0.2) !important;
}

.navbar-brand {
    color: white !important;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 5px;
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-radius: 5px;
    font-weight: 600;
}

.nav-link {
    color: white !important;
}

/* Dashboard */
.dashboard-container {
    background-color: #fff0f5;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
    border: 2px solid #ffd700;
}

/* Search input */
.form-control {
    border-radius: 15px;
    padding: 0.75rem;
    border: 2px solid #ffd700;
    background-color: #fff0f5;
}

.form-control:focus {
    border-color: #4169e1;
    box-shadow: 0 0 0 0.2rem rgba(65, 105, 225, 0.25);
}

/* Search button */
.btn-outline-secondary {
    background-color: #ff69b4;
    border-color: #ff69b4;
    color: white;
    border-radius: 15px;
    padding: 0.75rem 2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: #ff1493;
    border-color: #ff1493;
    transform: scale(1.05);
}

/* Action buttons */
.btn-group .btn {
    border-radius: 10px;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
}

.btn-outline-primary {
    background-color: #4169e1;
    border-color: #4169e1;
    color: white;
    border-radius: 15px;
    padding: 0.75rem 2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #3050b3;
    border-color: #3050b3;
    transform: scale(1.05);
}

.btn-outline-danger {
    background-color: #ff4500;
    border-color: #ff4500;
    color: white;
    border-radius: 15px;
    padding: 0.75rem 2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-outline-danger:hover {
    background-color: #ff1493;
    border-color: #ff1493;
    transform: scale(1.05);
}

/* Submit button */
.btn-primary {
    background-color: #4169e1;
    border-color: #4169e1;
    padding: 0.75rem 2rem;
    font-weight: bold;
    border-radius: 10px;
}

.btn-primary:hover {
    background-color: #3050b3;
    border-color: #3050b3;
}

/* Search results */
.list-group-item {
    border-radius: 15px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    background-color: #fff0f5;
    border: 1px solid #ffd700;
}

.list-group-item:hover {
    background-color: #f0f8ff;
    transform: translateX(5px);
}

/* Status badges */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

.badge.bg-primary {
    background-color: #4169e1;
}

.badge.bg-success {
    background-color: #ff69b4;
}

/* Tables */
.table {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.table th {
    background-color: #4169e1;
    color: white;
    font-weight: bold;
    text-align: center;
}

.table td {
    vertical-align: middle;
    text-align: center;
}

/* Alerts */
.alert {
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Animations */
.fade {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .dashboard-container {
        margin: 1rem;
        padding: 1rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}
