/* ===========================================
   Hijri Calendar - Tool Specific Styles (Cream/Gold/Brown Theme)
   =========================================== */

/* Tool Layout */
.hc-box {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

/* --- Current Date Display --- */
.hc-current-date-box {
    background: #fef3c7; /* Light Yellow/Cream BG */
    border: 2px solid #fcd34d;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.hc-current-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #a16207; /* Dark Gold/Brown */
    margin-bottom: 15px;
    border-bottom: 1px dashed #fcd34d;
    padding-bottom: 10px;
}

.hc-date-item {
    padding: 15px 0;
}

.hc-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #a16207;
    margin-bottom: 5px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hc-gregorian-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ca8a04; /* Primary Gold */
    line-height: 1.1;
}

.hc-hijri-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #44403c; /* Deep Brown */
    line-height: 1.1;
}

/* --- Conversion Box --- */
.hc-conversion-box {
    background: #fffbeb; /* Lighter Cream BG */
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 30px;
}

.hc-conversion-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #a16207;
    margin-bottom: 20px;
}

.hc-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hc-input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hc-input-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #a16207;
    margin-bottom: 6px;
}

.hc-input {
    padding: 10px;
    border: 1px solid #fcd34d; 
    border-radius: 6px;
    font-size: 1.1rem;
    color: #1f2937;
    width: 100%;
}

.hc-convert-result {
    margin-top: 25px;
    padding: 15px;
    border: 1px dashed #fcd34d;
    border-radius: 8px;
}

.hc-converted-label {
    font-size: 1rem;
    color: #44403c;
    font-weight: 600;
}

.hc-converted-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ca8a04;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .hc-conversion-box {
        padding: 20px;
    }
    .hc-controls {
        grid-template-columns: 1fr;
    }
    .hc-gregorian-value {
        font-size: 1.8rem;
    }
    .hc-hijri-value {
        font-size: 2rem;
    }
}