/* Container for the creator image to enforce square shape and centering */
.creator-img-container {
    position: relative;
    display: block;
    width: 100%; /* Use percentage for responsive container */
    padding-bottom: 100%; /* This creates a perfect square aspect ratio */
    overflow: hidden;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    transition: box-shadow 0.3s ease-in-out;
    margin: 0 auto; /* Center the container */
}

.creator-img-container:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); 
}

/* Make the image fill the container with absolute positioning */
.creator-profile-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Style for the creator name container */
.creator-name-container {
    padding: 10px;
    text-align: center;
    width: 100%;
}

/* Ensure text is visible */
.creator-name-container h5 {
    color: #ffffff; /* White text for visibility */
    font-weight: 600; /* Slightly bolder for better visibility */
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5); /* Add subtle shadow for legibility */
}

/* Make card background transparent */
.creator-card {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
} 