#personal-info-content {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    height: 100%;
    text-align: left;
}

#personal-info-content i {
    color: #6c757d; /* Adjust the color as needed */
}

#personal-info-content p {
    margin-top: 10px;
    font-size: 1.1em;
    color: #6c757d; /* Adjust the color as needed */
}

.text-left {
    text-align: left;
    align-items: flex-start; /* Override the center alignment */
    justify-content: flex-start; /* Override the center alignment */
}


.truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em; /* Fallback for browsers that do not support -webkit-line-clamp */
    line-height: 1.5em; /* Adjust based on your font size */
}


  .notification-bell {
    position: relative;
}
.notification-bell .red-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
}

.notification-bell .card-title {
    font-size: 1rem; /* Adjust the font size as needed */
}

.notification-bell .list-group-item {
    font-size: 0.875rem; /* Adjust the font size as needed */
}

/* Custom styles for application status */
.table-success {
    background-color: #d4edda; /* Light green */
}

.table-danger {
    background-color: #f8d7da; /* Light red */
}



.table-responsive {
    overflow-x: auto;
}

.table td, .table th {
    white-space: nowrap;
}



.timeline {
    list-style: none;
    padding: 0;
}

.timeline li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.timeline li:before {
    content: '';
    background: #007bff;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}


/* Hide mobile image on desktops and tablets */
.desktop-img {
    display: block; /* Show desktop image by default */
}

.mobile-img {
    display: none; /* Hide mobile image by default */
}


.card-img-top {
    display: block; /* Show desktop image by default */
}

.card-img-top-mobile {
    display: none; /* Hide desktop image by default */
}

/* CSS Media Query for Mobile Devices */
@media (max-width: 768px) {
    .desktop-img {
        display: none; /* Hide desktop image on mobile devices */
    }
    .mobile-img {
        display: block; /* Show mobile image on mobile devices */
    }
    .card-img-top {
        display: none; /* Hide desktop image on mobile devices */
    }
    .card-img-top-mobile {
        display: block; /* Show mobile image on mobile devices */
    }
}

