.modal-logo-img {
    width: 100px;
    height: auto;
    margin-top: 10%;
}

.modal-dashboard-bg .modal-content {
    background: #02363b;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}
.modal-dashboard-bg .modal-content::before {
    display: none;
}
.modal-dashboard-bg .modal-header, .modal-dashboard-bg .modal-body, .modal-dashboard-bg .modal-footer {
    position: relative;
    z-index: 2;
}
.modal-dashboard-bg .modal-title {
    color: #ff8800;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-align: center;
}
.modal-dashboard-bg .modal-body p {
    color: #ff8800;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-align: center;
}
.modal-dashboard-bg .btn-danger {
    background-color: #ff8800;
    border: none;
    color: #fff;
}
.modal-dashboard-bg .btn-danger:hover {
    background-color: #e67600;
}
.dashboard-logo-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.dashboard-logo-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
}
.dashboard-logo-img {
    width: 40px;
    height: auto;
    transition: transform 0.2s;
}
.dashboard-logo-btn:active .dashboard-logo-img,
.dashboard-logo-btn:focus .dashboard-logo-img {
    transform: scale(1.05);
}
.dashboard-logout {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s, transform 0.3s, max-height 0.3s;
    pointer-events: none;
    position: relative;
    left: 0;
    margin-top: 10px;
    display: block !important;
}
.dashboard-logout.show {
    opacity: 1;
    max-height: 100px;
    transform: translateY(0);
    pointer-events: auto;
}
.dashboard-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1100;
    width: 40px;
    height: auto;
}

.dashboard-logout {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s, transform 0.3s, max-height 0.3s;
    pointer-events: none;
    position: relative;
    left: 0;
    display: block !important;
}
.dashboard-logout.show {
    opacity: 1;
    max-height: 100px;
    transform: translateY(0);
    pointer-events: auto;
}
