.postCard {
    border-bottom: 1px solid black;
    padding-bottom: 10px;
}

.eventCard {
    border-bottom: 1px solid black;
    padding-bottom: 10px;
}

.memberCard {
    border-bottom: 1px solid black;
    padding-bottom: 10px;
    padding: 3px 6px;
}

.headerMemberCard {
    font-size: 16px;
    font-weight: bold;
}

.bodyMemberCard {
    font-size: 12px;
    font-color: grey;
}

.avatar {
    margin-right: 10px;
}

.eventDate {
    text-align: center;
    border-radius: 30px 30px 30px 30px;
    padding: 3px 6px;
    background: rgb(255, 51, 153);
    color: black;
    width: 20em;
}

.my-button-test {
    height: 75px;
    border: 1px solid grey;
    border-left: 5px solid orangered;
    color: black;
    background: white;
}

.mybutton {
    height: 25px;
    width: 10px;
    margin: 3px 6px;
}

.my-span {
    background: lightgrey;
    border-radius: 30px 30px 30px 30px;
    text-align: center;
    padding: 3px 6px;
}

.highlight-flash {
    animation: flash-highlight 2s ease-out;
}

@keyframes flash-highlight {
    0% {
        background-color: #663399;
        box-shadow: 0 0 10px 2px rgba(255, 235, 59, 0.6);
    }
    100% {
        background-color: transparent;
        box-shadow: none;
    }
}

.profile-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.profile-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.profile-field {
    margin-bottom: 10px;
}

.save-button, .change-password-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.save-button:hover, .change-password-button:hover {
    background-color: #45a049;
}

.action-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}

.password-field {
    margin-bottom: 15px;
}

###