/*notifications button, submit/cancel to checkmark*/
.notify-container {
    float: left;
    /* padding-top: .5%; */
    padding-left: 5%;
}

.notify-button {
    padding: 0.5em 1em;
    font-size: 1em;
    background-color: #0000cd;
    color: white;
    border: none;
    border-radius: 0.4em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5em;
}

.notify-button i {
    margin-right: 0.5em;
}

.notify-button:hover {
    color: #ffffff;
    background: #4444ec;
}

.notify-button:disabled {
    background-color: #28a745;
    color: white;
    cursor: default;
}

.notify-button.notified::after {
    content: " ✓";
    font-weight: bold;
    font-size: 1.1em;
    margin-left: 0.3em;
}

.notify-form {
    margin-top: 0.5em;
    display: flex;
    gap: 0.5em;
    align-items: center;
    flex-wrap: wrap;
}

.notify-form input[type="email"] {
    padding: 0.5em;
    font-size: 1em;
    width: 250px;
}

.notify-form button {
    padding: 0.5em 1em;
    font-size: 1em;
    border: none;
    border-radius: 0.4em;
    cursor: pointer;
}

.notify-form button[type="submit"] {
    background-color: #0000cd;
    color: white;
}

.cancel-button {
    background-color: #9b111e;
    color: white;
}