/* Notification Page Styles */
.notifications-page {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 900px;
}

.tabs {
    display: flex;
}

.tab-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.tab-button.active {
    background-color: var(--lighter-color);
    color: var(--text-color);
}

.notifications {
    width: 100%;
}

.notification {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: var(--secondary-color);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
}

.notification:first-child {
    border-top-left-radius: 0px;
}

.notification-text {
    flex-grow: 1;
    color: var(--text-color);
}

.notification-date {
    margin-left: 10px;
    color: var(--text-color);
    font-size: 14px;
}

.notifications-page p {
    margin-left: 10px;
}

.notification .action-button {
    width: 35px;
}