/* Social Styles Grid Styling */
.social-styles-grid-container {
    position: relative;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
}

.social-styles-grid {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-styles-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.social-styles-svg {
    display: block;
    background-color: white;
}

.quadrant-label {
    font-size: 16px;
    font-weight: 700;
    dominant-baseline: middle;
}

.quadrant-description {
    font-size: 11px;
    font-weight: 400;
    dominant-baseline: middle;
    fill: #6c757d;
}

.axis-label {
    font-size: 12px;
    font-weight: 500;
    fill: #6c757d;
}

.axis-title {
    font-size: 14px;
    font-weight: 600;
    fill: #495057;
}

.grid-legend {
    padding: 10px;
    color: #6c757d;
    background-color: white;
    border-top: 1px solid #f1f1f1;
    border-radius: 0 0 12px 12px;
}

.user-position {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.position-marker {
    width: 20px;
    height: 20px;
    background-color: #ff5722;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

.position-label {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff5722;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 87, 34, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
    }
}

/* Social style colors */
.analytical-color {
    color: #0d6efd;
}

.driver-color {
    color: #dc3545;
}

.amiable-color {
    color: #198754;
}

.expressive-color {
    color: #ffc107;
} 