/* Core Wrapper */
.aisrajpen-bday-wrapper {
    background-color: #fcfcf9; /* Light cream */
    border: 1px solid #e2e2dd;
    border-top: 4px solid #1a365d; /* Deep blue accent */
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
    font-family: 'Open Sans', 'Roboto', 'Segoe UI', sans-serif;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.aisrajpen-bday-header {
    text-align: center;
    margin-bottom: 30px;
}

.aisrajpen-bday-header h2 {
    color: #1a365d;
    font-size: 1.8rem;
    margin: 0 0 10px 0;
    font-family: 'Merriweather', 'Georgia', serif;
    font-weight: 700;
}

.aisrajpen-bday-subtext {
    color: #666;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

/* Grid Layout */
.aisrajpen-bday-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    align-items: stretch;
}

/* Card */
.aisrajpen-bday-card {
    background: #ffffff;
    border-left: 3px solid #d4af37; /* Gold accent */
    border-radius: 6px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aisrajpen-bday-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
}

.aisrajpen-bday-icon {
    font-size: 2.2rem;
    margin-right: 15px;
    line-height: 1;
}

.aisrajpen-bday-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.aisrajpen-bday-name {
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

/* Badges */
.aisrajpen-bday-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.service-ias { background-color: #2b6cb0; } /* Deep Blue */
.service-ips { background-color: #820000; } /* Dark Red / Maroon */
.service-ifs { background-color: #276749; } /* Deep Green */
.service-default { background-color: #718096; } /* Gray fallback */

.aisrajpen-bday-message {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.aisrajpen-bday-empty {
    text-align: center;
    padding: 30px;
    color: #666;
    background: #fff;
    border-radius: 6px;
    border: 1px dashed #ccc;
    font-size: 1.1rem;
}

/* Animation */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .aisrajpen-bday-grid {
        grid-template-columns: 1fr;
    }
    
    .aisrajpen-bday-wrapper {
        padding: 20px;
    }
}
