﻿.bg-accent {
    background: transparent linear-gradient(-225deg, #00CCCC 0%, #111132 100%) 0% 0% no-repeat padding-box;
}

.bg-accent-lease {
    background: transparent linear-gradient(241deg, #A1B720 0%, #29659C 100%) 0% 0% no-repeat padding-box;
}

.checkbox-custom {
    transform: scale(1.3) translate(2px, -2px);
}

.color-gray, a.color-gray:hover, .form-control::placeholder {
    color: #707070;
}

.separator {
    border: 1px solid #707070;
}

.btn.btn-proceed {
    background-color: #00CCCC;
    color: white;
}

.shadow-lg {
    box-shadow: 0px 3px 10px #00000029 !important;
}

.min-px-200 {
    min-width: 200px;
}

.min-px-350 {
    min-width: 350px;
}

.w-px-50{
    width: 50px;
}

.blackOnHover:hover {
    background-color: #111132 !important;
    color: white !important;
}

.info-board {
    border-width: 5px !important;
    background-color: steelblue;
    color: white;
}

.basis-content {
    flex-basis: content;
}

.page-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#notifications-container {
    max-height: 100vh;
    overflow-y: auto;
    margin-bottom: 20px;
    margin-right: 20px;
    bottom: 0;
    right: 0;
    z-index: 1050;
}

.toast {
    min-width: 550px;
    background: white;
    margin-bottom: 10px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border: none;
}

.toast-footer {
    padding: 0 0.75rem 0.50rem 0.75rem;
}

.fs-30 {
    font-size: 30px;
}

.notification-image {
    width: 150px;
    background-color: var(--primary);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notification-badge {
    background-color: var(--light);
    padding: 6px 12px;
    width: fit-content;
    border-radius: 50px;
}

.notification-badge p {
    font-size: 10px;
}

.notification-button {
    background-color: var(--primary);
    padding: 6px 20px;
    width: fit-content;
    border-radius: 50px;
    color: var(--light);
}

.notification-button:hover {
    color: var(--light);
    text-decoration: none;
}

.close-button {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--light);
    width: 20px;
    height: 20px;
    border-radius: 50px;
    color: var(--gray-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

.close-button:focus {
    outline: none;
}

.dialog-input {
    width: 100% !important;
}

.modal-dialog-client-id {
    max-width: 400px !important;
}

#login-progress-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 4px;
}

.login-spinner {
    width: 2rem;
    height: 2rem;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary, #007bff);
    border-radius: 50%;
    animation: login-spin 0.7s linear infinite;
}

@keyframes login-spin {
    to { transform: rotate(360deg); }
}
