.account-details {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
    background-color: #222;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.avatar-container {
    flex: 0 0 140px;
    margin-right: 30px;
    border: 2px solid #555;
    padding: 15px;
    border-radius: 12px;
    background-color: #333;
    position: relative;
}

.user-avatar {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.user-details p {
    margin: 0 0 15px;
    font-size: 18px;
    color: #ddd;
}

.user-details p strong {
    color: #00BBFF;
}

.user-details p span#user-status {
    color: #00ff00;
    font-weight: bold;
}

.divider {
    margin: 20px auto;
    border-top: 1px solid #555;
    width: 95%;
    text-align: center;
}

.button-container {
    text-align: right;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
}

#edit-delete-container {
    display: flex;
    gap: 15px;
}

.edit-button, .delete-button {
    display: inline-block;
    background-color: #1e1e1e;
    color: #00BBFF;
    border: 2px solid #00BBFF;
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.edit-button:hover, .delete-button:hover {
    background-color: #00BBFF;
    color: #ffffff;
    box-shadow: 0px 0px 20px rgba(0, 187, 255, 0.75), 0 0 30px rgba(0, 187, 255, 0.5);
    transform: translateY(-2px) scale(1.02);
}

.edit-button:active, .delete-button:active {
    background-color: #0088cc;
    box-shadow: 0px 0px 10px rgba(0, 136, 204, 0.75);
    transform: translateY(0) scale(1);
}
