@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.agenda-row-group {
    border-top: 3px solid #aad4f5 !important;
    background-color: #f1faff !important;
    box-shadow: inset 0 2px 2px rgba(0, 123, 255, 0.05);
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 87, 34, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
    }
}

    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
    }
}
.toggle-chip {
    padding: 6px 20px;
    border: none;
    border-radius: 25px;
    background-color: #f0f8ff;
    color: #0077b6;
    font-weight: 500;
    font-size: 14px;
    box-shadow: inset 0 0 0 1px #cde4f5;
    transition: all 0.2s ease-in-out;
}

    .toggle-chip:hover {
        background-color: #d9f0ff;
        color: #005b99;
    }

.active-chip {
    background-color: #007bff;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.descriptionmodal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px #aaa;
    text-align: center;
    width: 65vw;
    height: 80vh;
    max-width: 900px;
    max-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.modal-image {
    width: 95%;
    height: 85%;
    object-fit: cover;
    border-radius: 10px;
}



.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    border: none;
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
}

.download-btn {
    margin-top: 10px;
    padding: 10px 14px;
    background: blue;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}
.blinking-bell {
    animation: blinker 1s linear infinite, pulseGlow 1.5s ease-in-out infinite;
    color: #dc3545 !important;
    position: relative;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

@keyframes pulseGlow {
    0% {
        text-shadow: 0 0 0px #dc3545;
    }

    50% {
        text-shadow: 0 0 10px #dc3545;
    }

    100% {
        text-shadow: 0 0 0px #dc3545;
    }
}

.notification-banner {
    position: fixed;
    top: 10px; 
    right: 220px; 
    background: linear-gradient(to right, #007bff, #3399ff);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 1050;
    display: flex;
    align-items: center;
    animation: slideDownFade 0.5s ease-in-out;
}

@keyframes slideDownFade {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

