/* Custom styles for Cooperative Societies Management */

.jumbotron {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.navbar-brand {
    font-weight: bold;
}

.btn-primary {
    background-color: #667eea;
    border-color: #667eea;
}

.btn-primary:hover {
    background-color: #5a67d8;
    border-color: #5a67d8;
}

.bg-primary {
    background-color: #667eea !important;
}

/* Dashboard cards */
.card.bg-primary,
.card.bg-success,
.card.bg-warning,
.card.bg-info {
    border: none;
}

/* Table styles */
.table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Modal styles */
.modal-header {
    background-color: #667eea;
    color: white;
}

.modal-header .btn-close {
    filter: invert(1);
}

/* Form styles */
.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Alert styles */
.alert-info {
    background-color: #e1f5fe;
    border-color: #81d4fa;
    color: #01579b;
}

/* Dropdown styles */
.dropdown-menu {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.125);
    min-width: 200px;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    transition: background-color 0.15s ease-in-out;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item i {
    margin-right: 0.5rem;
}

/* Navbar dropdown specific styles */
.navbar .dropdown-menu {
    margin-top: 0.5rem;
}

.navbar .dropdown-toggle::after {
    margin-left: 0.5rem;
}
