body {
    font-family: 'Arial', sans-serif;
    background-color: #1C1F2C; 
    margin: 0;
    padding: 20px;
    text-align: center;
    position: relative;  
}

.header-container {
    text-align: center; 
    margin-bottom: 40px; 
}

.logo {
    height: 100px; 
    margin-bottom: -50px;
    text-align: center;
}

h1 {
    font-size: 60px;  
    color: #ffb8e5;  
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 900;
    font-style: normal;
    margin-bottom: -30px;  
}

h2 {
    font-size: 24px;  
    color: #ffb8e5;  
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.roster {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.name {
    flex: 0 0 30%;  
    margin: 10px;
    padding: 20px;  
    background-color: #ebe9ea;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 24px;
}

.name:hover {
    transform: scale(1.02);
}

.social-label {
    color: white;
}

.social-links {
    margin-top: 100px;
}

.social-links a > img { transition: .2s ease; }

.social-links a:hover > img {
    transform: scale(1.1);
}

.login-button {
    position: absolute;  
    top: 20px;  
    right: 20px;  
    padding: 10px 20px;
    background-color: #6441a5;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: .2s ease;
}

.login-button:hover {
    background-color: #5f3d9b;
    transform: scale(1.05);
}

.suggestion-container {
    margin-top: 100px; 
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 24px;
    color: white;
}


.suggestion-input {
    padding: 10px;
    width: 300px; 
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-button {
    padding: 10px 20px;
    background-color: #6441a5;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
}

.feedback-buttons {
    margin-top: 10px;  
    display: flex;
    justify-content: center;  
}

.vote-button {
    background: none; 
    border: none;  
    font-size: 24px;  
    cursor: pointer;  
    margin: 0 10px;  
    transition: color 0.2s; 
}

.vote-button:hover {
    color: #a40cc2;
}

.btn-refresh {
    position: absolute;
    top: 20px; left: 20px;
    width: 40px;
    background-color: transparent;
    border: none;
    transition: .2s ease;
}


.btn-refresh:disabled {
    opacity: 0.1;
}

.btn-refresh img { 
    width: 100%;
    height: 100%; 
}

.btn-refresh:enabled:hover {
    cursor: pointer;
    transform: scale(1.1);
}