/* Custom styles */
.card {
    transition: transform 0.2s ease-in-out;
    border: none;
    border-radius: 10px;
}

.card:hover {
    transform: translateY(-5px);
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
}

.card-title {
    color: #2c3e50;
    font-weight: 600;
}

.card-text {
    color: #636e72;
}

.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: scale(1.05);
}

.input-group-text {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

#search {
    border-left: none;
}

#search:focus {
    box-shadow: none;
    border-color: #3498db;
}

/* Login page styles */
.card .input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

.card .form-control {
    border-left: none;
}

.card .form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
}

.card .input-group:focus-within .input-group-text {
    border-color: #86b7fe;
}

.card .input-group:focus-within .form-control {
    border-color: #86b7fe;
}

.alert {
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}