/* ========================================
   Score My Shore Access Contacts Section
   ======================================== */

.score-my-shore-access-section {
    margin-top: 2rem;
    border-top: 2px solid #e5e7eb;
    padding-top: 2rem;
}

/* Alert Styling for Score My Shore Info */
.score-my-shore-info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #3b82f6;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #1e40af;
}

.alert-icon {
    font-size: 1.5rem;
}

.alert-body {
    margin: 0 0 1rem 0;
    color: #1e3a8a;
    line-height: 1.6;
}

.alert-warning {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
}

.warning-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    color: #f59e0b;
}

.alert-warning strong {
    color: #92400e;
}

/* Score My Shore Contact Card Styling */
.contact-card.score-my-shore-access {
    border-left: 4px solid #8b5cf6;
    background: linear-gradient(135deg, #faf5ff 0%, #f5f3ff 100%);
}

.contact-card.score-my-shore-access:hover {
    border-left-color: #7c3aed;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

/* Badge for Score My Shore Access */
.badge-score-my-shore {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 4px rgba(139, 92, 246, 0.2);
}

/* Score My Shore Note Styling */
.score-my-shore-note {
    background: #f3f4f6;
    border-left: 3px solid #8b5cf6;
    padding: 0.75rem;
    border-radius: 4px;
    margin-top: 0.5rem;
    color: #4b5563;
    font-style: italic;
}

.score-my-shore-note .info-icon {
    color: #8b5cf6;
    margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .score-my-shore-info {
        padding: 1rem;
    }

    .alert-header {
        font-size: 1rem;
    }

    .alert-warning {
        flex-direction: column;
        gap: 0.5rem;
    }

    .badge-score-my-shore {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* ========================================
   "Has Results" Badge for WBIC Selection Modal
   ======================================== */

.has-results-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
    margin-left: 0.5rem;
    animation: subtle-pulse 2s ease-in-out infinite;
}

.has-results-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.4);
}

@keyframes subtle-pulse {
    0%, 100% {
        box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 2px 10px rgba(16, 185, 129, 0.5);
    }
}
