/* Alert Info Box Styles */
.alert-info-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    border-left: 5px solid #2196F3;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}

.alert-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.alert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1976D2;
    margin-bottom: 1rem;
}

.alert-text {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.alert-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.alert-list li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.alert-note {
    background: rgba(33, 150, 243, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #2196F3;
    font-size: 0.95rem;
    color: #1976D2;
    margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .alert-info-box {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .alert-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .alert-title {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .alert-text {
        font-size: 1rem;
    }
}


