/**
 * Custom Bootstrap Overrides
 * Visora Photography Platform - Modern Design
 */

/* Override Bootstrap defaults to match modern theme */
:root {
    --bs-primary: #3498db;
    --bs-secondary: #2c3e50;
    --bs-success: #27ae60;
    --bs-danger: #e74c3c;
    --bs-warning: #f39c12;
    --bs-info: #3498db;
    --bs-light: #f8f9fa;
    --bs-dark: #1a1a1a;
}

/* Modern border-radius */
.btn {
    border-radius: 10px !important;
}

.card {
    border-radius: 15px !important;
}

.form-control,
.form-select {
    border-radius: 10px !important;
}

.alert {
    border-radius: 10px !important;
}

.modal-content {
    border-radius: 20px !important;
}

/* Custom focus states */
.form-control:focus,
.form-select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.15);
}

/* Button overrides */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
}

/* Card overrides */
.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-bottom: none;
}

/* Table overrides */
.table {
    border-color: #e0e0e0;
}

.table-striped > tbody > tr:nth-of-type(odd) > td {
    background-color: #f9f9f9;
}

/* Modal overrides */
.modal-content {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.modal-header {
    border-bottom: 2px solid #e0e0e0;
    background: #fff;
    color: #000;
}

.modal-footer {
    border-top: 2px solid #e0e0e0;
    background: #fff;
}

/* Pagination */
.page-link {
    color: #2c3e50;
    border-color: #e0e0e0;
    border-radius: 10px;
    margin: 0 2px;
}

.page-link:hover {
    color: #3498db;
    background-color: #f8f9fa;
    border-color: #3498db;
}

.page-item.active .page-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #ffffff;
}

/* Badge */
.badge {
    border-radius: 20px;
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.badge-dark {
    background: #2c3e50;
    color: #ffffff;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #2c3e50;
}

.dropdown-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

