.notification-one {
    border-radius: 10px;
    padding: 10px 29px;
    margin: 10px;
    width: 31%;
    min-height: 10rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
}

@media only screen and (max-width: 600px) {
    .notification-one {
        width: 100% !important;
    }
}

.notification-message {
    padding: 0 0 10px;
}

.notification-content {
    color: white;
    font-size: 15px;
}

.notification-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.read-btn {
    color: #435ebe !important;
    background: white !important;
}


/* --bs-blue: #435ebe;
--bs-indigo: #6610f2;
--bs-purple: #6f42c1;
--bs-pink: #d63384;
--bs-red: #dc3545;
--bs-orange: #fd7e14;
--bs-yellow: #ffc107;
--bs-green: #198754;
--bs-light-green: #28a47f;
--bs-teal: #20c997;
--bs-cyan: #0dcaf0;
--bs-white: #fff;
--bs-gray: #6c757d;
--bs-gray-dark: #343a40;
--bs-primary: #435ebe;
--bs-secondary: #6c757d;
--bs-success: #198754;
--bs-info: #0dcaf0;
--bs-warning: #ffc107;
--bs-danger: #dc3545;
--bs-light: #f8f9fa;
--bs-dark: #212529; */

.notification-one:nth-child(1),
.notification-one:nth-child(10) {
    background-color: var(--bs-blue);
}

.notification-one:nth-child(2),
.notification-one:nth-child(11) {
    background-color: var(--bs-purple);
}

.notification-one:nth-child(3),
.notification-one:nth-child(12) {
    background-color: var(--bs-red);
}

.notification-one:nth-child(4),
.notification-one:nth-child(13) {
    background-color: var(--bs-success);
}

.notification-one:nth-child(5),
.notification-one:nth-child(14) {
    background-color: var(--bs-orange);
}

.notification-one:nth-child(6),
.notification-one:nth-child(15) {
    background-color: var(--bs-pink);
}

.notification-one:nth-child(7),
.notification-one:nth-child(16) {
    background-color: var(--bs-indigo);
}

.notification-one:nth-child(8) {
    background-color: var(--bs-gray);
}

.notification-one:nth-child(9) {
    background-color: var(--bs-green);
}

.flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-around;
    margin: 2rem 0;
}

.read-btn {
    float: right;
}