body, html {
    height: auto; /* Adjust height for overall scrolling */
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1A1A1A;
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to top */
    min-height: 100vh;
}

.profile-container {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #004080;

    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-header h1 {
    text-align: center;
		color: white;
}

.scrollable-section {
    max-height: 300px; /* Set a fixed height */
    overflow-y: auto; /* Enable vertical scrolling */
    background-color: #002060;
    padding: 20px;
    border-radius: 5px;
}

.player-info h2, .professional-info h2 {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
		color: white;
}

p {
    line-height: 1.6;
    font-size: 16px;
}

strong {
    color: #ADD8E6;
}
