/* Notification Container */
#notification-container {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
    width: 300px;
}

/* Custom Notification Styles */
.custom-notification {
    display: flex;
    align-items: center;
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    border-radius: 5px;
    padding: 10px;
    font-weight: bold;
    margin-bottom: 10px;
    width: 100%;
    /* Full width inside the container */
    height: 60px;
    /* Fixed height for the notifications */
    position: relative;
}

.custom-notification .icon {
    margin-right: 10px;
    font-size: 24px;
    /* Increase the size of the icon */
}

.custom-notification .progress-bar-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.1);
}

.custom-notification .progress-bar {
    height: 100%;
    background-color: #28a745;
    width: 0%;
    /* Start with 0% width */
}

.custom-error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.custom-error .progress-bar {
    background-color: #dc3545;
}

/* Bootstrap Icons */
@font-face {
    font-family: 'Bootstrap Icons';
    src: url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/fonts/bootstrap-icons.woff2?v=1.10.0') format('woff2'),
        url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/fonts/bootstrap-icons.woff?v=1.10.0') format('woff');
    font-weight: normal;
    font-style: normal;
}

.bi {
    display: inline-block;
    font-family: 'Bootstrap Icons';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    vertical-align: -0.125em;
    text-transform: none;
    /* speak: none; */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bi-check-circle-fill:before {
    content: "\f13a";
}

.bi-x-circle-fill:before {
    content: "\f057";
}