.imgLogo {
    width: 190px;
}

body {
    background-color: #080822;

}


body {
    font-family: Arial, sans-serif;
    background-color: #080822;
}

.navbar {
    background-color: #2a50db;
}





.nav-link {
    width: max-content;
    width: 100%;
    text-align: center;
}





.notification-header {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
    background: #2B50DC;
    color: white;
}

.notification-list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    padding-bottom: 75px;
    max-height: 90vh;

}

.notification-item {
    padding: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background 0.3s ease;
}

.notification-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.unread-notification {
    background-color: #2B50DC;
    color: white;
}

.no-notifications {
    text-align: center;
    color: #999;
    padding: 20px;
}

.bottom-navbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #080822;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 100;
}

.nav-items {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 12px;
    cursor: pointer;
}

.home-button {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -15px;
}

.notification-badge {
    position: absolute;
    top: 5px;
    right: 10px;
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-toggle {
    border-radius: 15px;
    border: 1px solid #ffffff;
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
}

.button-toggle.active {
    background-color: white;
    color: #2a50db;
    border: 2px solid #2a50db;
}

.button-toggle.inactive {
    background-color: transparent;
    color: #d9d9d9;
    border: 1px solid #d9d9d9;
}

.button-action{
    background-color: white;
    color: #2a50db;
    border: 2px solid #2a50db;
    border-radius: 15px;
    margin: auto;
}

.message-date {
    font-size: 10px;
    color: #aaa;
    margin-top: 5px;
    text-align: right;
  }

.placeholder-text {
text-align: center;
margin-top: 50px;
font-size: 18px;
color: white;
}