/* Islamic Calendar Widget Styles */
#icw-calendar-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 100%;
    background: linear-gradient(145deg, #1a3a2a, #2a5a3a);
    border-radius: 16px;
    padding: 20px 15px 25px;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    margin: 10px 0;
}

.icw-header {
    text-align: center;
    margin-bottom: 15px;
}

.icw-gregorian-month {
    font-size: 24px;
    font-weight: 700;
    color: #f5d742;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.icw-islamic-month {
    font-size: 16px;
    color: #b0d4a8;
    margin-top: 4px;
    border-bottom: 1px solid #3d7a4a;
    padding-bottom: 12px;
}

.icw-today-info {
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 18px;
    border: 1px solid #4a8f5a;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 14px;
}

.icw-today-info .icw-label {
    color: #aad4a0;
    font-size: 12px;
}

.icw-today-info .icw-date {
    font-weight: 700;
    font-size: 18px;
    color: #f5d742;
}

.icw-divider {
    color: #4a8f5a;
}

.icw-calendar-table {
    width: 100%;
    border-collapse: collapse;
    margin: 5px 0 10px;
}

.icw-calendar-table th {
    font-size: 12px;
    font-weight: 600;
    padding: 8px 0;
    color: #c7e6c0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #3d7a4a;
    text-align: center;
}

.icw-calendar-table td {
    text-align: center;
    padding: 6px 2px;
    border-radius: 25px;
    transition: all 0.2s ease;
}

.icw-greg-date {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.icw-hijri-date {
    display: block;
    font-size: 10px;
    color: #b0d4a8;
    margin-top: 1px;
}

.icw-today-cell {
    background: #f5d742 !important;
    border-radius: 25px;
    box-shadow: 0 3px 12px rgba(245,215,66,0.3);
}

.icw-today-cell .icw-greg-date {
    color: #1a3a22;
    font-weight: 700;
}

.icw-today-cell .icw-hijri-date {
    color: #1a3a22;
    font-weight: 600;
}

.icw-empty-cell {
    opacity: 0.2;
}

.icw-empty-cell .icw-greg-date,
.icw-empty-cell .icw-hijri-date {
    color: #666;
}

.icw-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #3d7a4a;
}

.icw-nav-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid #4a8f5a;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.icw-nav-btn:hover {
    background: #f5d742;
    color: #1a3a22;
    border-color: #f5d742;
}

.icw-nav-month {
    font-size: 16px;
    font-weight: 600;
    color: #f5d742;
}

.icw-loading {
    text-align: center;
    padding: 30px 0;
    color: #b0d4a8;
    font-size: 14px;
}

/* Shortcode Styles */
.icw-shortcode-wrapper {
    max-width: 500px;
    margin: 20px auto;
}

.icw-shortcode-title {
    text-align: center;
    color: #1a3a2a;
    margin-bottom: 15px;
    font-size: 24px;
}

/* Responsive */
@media (max-width: 480px) {
    #icw-calendar-container {
        padding: 15px 10px;
    }
    .icw-gregorian-month {
        font-size: 20px;
    }
    .icw-today-info {
        font-size: 12px;
        padding: 8px 10px;
    }
    .icw-today-info .icw-date {
        font-size: 15px;
    }
    .icw-greg-date {
        font-size: 13px;
    }
    .icw-hijri-date {
        font-size: 9px;
    }
    .icw-calendar-table th {
        font-size: 10px;
        padding: 6px 0;
    }
    .icw-nav-btn {
        padding: 5px 12px;
        font-size: 12px;
    }
}