/* ===========================================
   Islamic Calendar - Tool Specific Styles (Deep Blue/Gold Theme)
   =========================================== */

/* Tool Layout */
.ic-box {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

/* --- Current Date Display --- */
.ic-current-date-box {
    background: #e0f2f7; /* Light Blue BG */
    border: 2px solid #06b6d4; /* Cyan/Blue border */
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.ic-current-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0c4a6e; /* Deep Blue */
    margin-bottom: 15px;
    border-bottom: 1px dashed #06b6d4;
    padding-bottom: 10px;
}

.ic-date-item {
    padding: 15px 0;
}

.ic-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0891b2; /* Medium Blue */
    margin-bottom: 5px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ic-gregorian-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0ea5e9; /* Primary Blue */
    line-height: 1.1;
}

.ic-hijri-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f59e0b; /* Deep Gold */
    line-height: 1.1;
}

/* --- Conversion Box --- */
.ic-conversion-box {
    background: #f8fafc; /* Lighter Greyish Blue */
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 30px;
}

.ic-conversion-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 20px;
}

.ic-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ic-input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.ic-input-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0891b2;
    margin-bottom: 6px;
}

.ic-input {
    padding: 10px;
    border: 1px solid #06b6d4; 
    border-radius: 6px;
    font-size: 1.1rem;
    color: #1f2937;
    width: 100%;
}

.ic-convert-result {
    margin-top: 25px;
    padding: 15px;
    border: 1px dashed #06b6d4;
    border-radius: 8px;
}

.ic-converted-label {
    font-size: 1rem;
    color: #0c4a6e;
    font-weight: 600;
}

.ic-converted-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f59e0b;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .ic-conversion-box {
        padding: 20px;
    }
    .ic-controls {
        grid-template-columns: 1fr;
    }
    .ic-gregorian-value {
        font-size: 1.8rem;
    }
    .ic-hijri-value {
        font-size: 2rem;
    }
}