/* Container pentru suporteri */
.supporters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Stil pentru fiecare suporter */
.supporter {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.2s;
    overflow: hidden; /* Pentru a gestiona marea pozei */
}

.supporter:hover,
.supporter.active {
    transform: scale(1.1);
    z-index: 1;
}

.supporter h3 {
    margin-top: 0;
    font-size: 1.5em;
}

/* Imaginea suporterului */
.supporter img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: transform 0.2s;
}

.supporter.active img {
    transform: scale(1.2); /* Mărimea imaginii când este selectată */
}

/* Audio player */
.supporter audio {
    width: 100%;
    margin-bottom: 15px;
}

/* Butonul de vot */
.vote-button {
    background: #ff6f61;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.vote-button:hover {
    background: #ff4c39;
}

/* Stil pentru imaginea extinsă */
.expanded-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.2s, width 0.2s, height 0.2s;
}

.expanded-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.expanded-image-container img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
}

.expanded-image-container .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    padding: 5px 10px;
}
