.account-section-container {
    background-color: #fff; /* White background for the section */
    width: 100%; /* Adjust width as needed */
    padding: 30px 40px; /* Padding inside the white box */
    display: flex;
    justify-content: space-between; /* Pushes content and button to opposite ends */
    align-items: center; /* Vertically centers items */
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    margin-top: 50px; /* Example margin from the top of the dark background */
}

.account-content {
    display: flex;
    flex-direction: column;
    width: 75%;
}

.account-name {
    font-size: 1em;
    width: 25%;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.account-description {
    font-size: 1em; /* Standard font size for description */
    color: #666; /* Lighter color for description */
}

.account-button-link {
    text-decoration: none; /* Removes underline from the link */
    display: inline-block; /* Allows the link to wrap the button properly */
}

.account-button {
    background-color: #8a2be2;
    width: 20em;
    margin-top: 1em;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: .75em;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 150px;
    text-align: center;
}

.account-button:hover {
    background-color: #7a1fd6; /* Slightly darker purple on hover */
    transform: translateY(-2px); /* Subtle lift effect on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25); /* Slightly larger shadow on hover */
}

@media screen and (max-width:500px){
.account-section-container {
    display: flex;
    flex-direction: column;
    padding: 1em;
}
}

@media screen and (max-width:500px){
.account-name {
    width: 100%;
    text-align: center;
}
}

@media screen and (max-width:500px){
span.mod-card-button {
    width: 100%;
    font-size: .75em;
}
}

@media screen and (max-width:500px){
.account-content {
    width: 100%;
}
}