/* 
ADD THESE STYLES TO YOUR assets/css/referral-form.css 
OR ADD TO YOUR EXISTING CSS FILE
*/

/* Group Info Section */
.group-info-section {
    border: 2px solid #27ae60 !important;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.1);
}

.group-info-section .section-title {
    border-bottom-color: #27ae60;
    color: #27ae60;
}

.group-info-details {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    padding: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-weight: 600;
    color: #2c3e50;
    min-width: 80px;
    margin-right: 10px;
}

.info-value {
    color: #34495e;
    font-weight: 500;
}

.admin-badge {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    margin-left: 8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Animation for showing group info */
.group-info-section {
    animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-label {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 3px;
    }
}