:root {
    --primary: #FF9933; /* Saffron */
    --primary-dark: #D35400;
    --text: #333;
    --bg-card: #FFFBF0; /* Light Cream */
    --success: #27ae60;
    --danger: #c0392b;
    --neutral: #f39c12;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.muhurat-card {
    width: 340px;
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    border: 2px solid var(--primary);
}

.card-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 15px;
    text-align: center;
}

.card-header h2 {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
}

.card-header p {
    margin: 5px 0 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.card-body {
    padding: 20px;
    text-align: center;
}

.location-status {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-bottom: 20px;
}

/* Status Ring Animation */
.status-ring {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 8px solid #ddd;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.ring-content {
    display: flex;
    flex-direction: column;
}

.status-label {
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.status-sub {
    font-size: 0.85rem;
    color: #555;
}

/* Dynamic Colors */
.status-ring.good { border-color: var(--success); color: var(--success); background: #e8f8f5; }
.status-ring.bad { border-color: var(--danger); color: var(--danger); background: #fdedec; }
.status-ring.avg { border-color: var(--neutral); color: var(--neutral); background: #fef9e7; }

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.info-box {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.info-box .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 3px;
}

.info-box .value {
    font-weight: bold;
    color: var(--text);
    font-size: 0.95rem;
}

.info-box.highlight .value {
    color: var(--danger);
}

.card-footer {
    background: #fcfcfc;
    padding: 12px;
    text-align: center;
    border-top: 1px solid #eee;
}

.card-footer button {
    background: none;
    border: none;
    color: var(--primary-dark);
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
}
.branding-text {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #666;
}

.branding-text a {
    color: var(--primary-dark); /* Matches your Saffron theme */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

.branding-text a:hover {
    color: var(--danger); /* Changes color slightly on hover */
    text-decoration: underline;
}