/* Custom styles for ASIN Manager */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Push footer to bottom */
.footer {
    margin-top: auto;
}

/* Card styling */
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.card-header {
    font-weight: bold;
    background-color: #f8f9fa;
}

/* Login form specific styling */
#loginForm {
    max-width: 400px;
    margin: 2rem auto;
}

/* Table styling */
.table th {
    background-color: #f1f1f1;
}

.table-hover tbody tr:hover {
    background-color: #f9f9f9;
}

/* Button styling */
.btn-primary {
    background-color: #3D348B;
    border-color: #3D348B;
}

.btn-primary:hover {
    background-color: #2A2359;
    border-color: #2A2359;
}

.btn-outline-primary {
    color: #3D348B;
    border-color: #3D348B;
}

.btn-outline-primary:hover {
    background-color: #3D348B;
    border-color: #3D348B;
}

/* Navbar styling */
.navbar-dark.bg-primary {
    background-color: #3D348B !important;
}

/* Form control focus */
.form-control:focus {
    border-color: #3D348B;
    box-shadow: 0 0 0 0.25rem rgba(61, 52, 139, 0.25);
}

/* Region selector */
#regionSelector {
    min-width: 180px;
}

/* Modal styling */
.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.modal-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .table {
        font-size: 0.9rem;
    }
    
    .btn-sm {
        padding: 0.2rem 0.4rem;
        font-size: 0.7rem;
    }
}