/* Shelly Price Monitor - Custom Styles */

body {
    background-color: #f5f7fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.navbar-brand {
    font-weight: 600;
}

.card {
    border: none;
    border-radius: 12px;
}

.card-header {
    border-radius: 12px 12px 0 0 !important;
    border-bottom: 1px solid #eee;
}

.table th {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #6c757d;
}

.table td {
    vertical-align: middle;
}

.badge {
    font-weight: 500;
}

.product-card .card-header h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Price highlight */
.table tbody tr:first-child .fw-bold {
    color: #198754;
}

/* Login card */
.card.shadow {
    border-radius: 16px;
}

/* Nav pills custom */
#countryFilter .nav-link {
    border-radius: 20px;
    padding: 6px 16px;
    margin-right: 4px;
    font-size: 0.9rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 0.5rem;
    }

    .table {
        font-size: 0.85rem;
    }
}

/* Modal styling */
.modal-content {
    border-radius: 12px;
    border: none;
}

/* Status badges */
.badge.bg-danger {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
