.outer-notification-bar {
    font-family: Arial, sans-serif;
    display: flex;
    min-height: 100vh;
    margin: 0;
}

/* Notification Board */
.notification-board {
    padding: 10px 0px 110px 0px;
    /* margin-top: 110px !important; */
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    overflow: hidden;
}

.board-title {
    margin-bottom: 10px;
  border-radius: 10px;
    background: var(--primary-orange-color, #F58634);
    align-self: center;
    width: 350px;
    color: white;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

/* Notification Card */
.notification-card {
    width: 80%;
    align-self: center;
    display: flex;
    align-items: flex-start;
    padding-right: 12px;
    border-bottom: 0.75px solid #bebcbc;
    transition: background-color 0.3s;
    padding: 4px 0px;
}

.notification-card:hover {
    background-color: #f9f9f9;
}

.card-image {
    width: 215px;
    height: 100%;

    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    flex: 1;
}

.card-title {
    color: #000;
    font-family: "Open Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.card-title span {
    color: #000;
    font-family: "Open Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.card-text {
    color: #000;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.notifi-card-date {
    color: #000;
    text-align: right;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.175px;
}
@media (max-width:750px) {
    .notification-card {
        /* margin: 100px 0px; */
        position: relative;
    }
    .card-image{
        width: 60px;
        height: 60px;
        align-self: center;
        border-radius: 50%;
    }
    .card-title{
        text-align: start !important;
        margin: 0;
        font-size: 12px;
        font-weight: 800;
    }
    .card-text{
        text-align: start !important;
        margin: 0;
        font-size: 10px;
    }
    .card-content{
        align-self: center;
    }
    .notifi-card-date{
        font-size: 8px;
    }
}
@media (max-width:600px) {
   
    #balance{
        padding: 0px !important;
    }
    .notification-card {
        width: 97%;
    }
    .card-title span{
        font-size: 14px;
    }
    .card-image{
        width: 49px;
        height: 49px;
        align-self: start;
    }
    .board-title{
        font-size: 15px;
        padding: 7px;
        width: 118px;
    }
}