/* /Views/File/Download.cshtml.rz.scp.css */
.particles[b-n67kg236ny] {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle[b-n67kg236ny] {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float-b-n67kg236ny 15s infinite;
}

@keyframes float-b-n67kg236ny {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.6;
    }
}

.particle:nth-child(1)[b-n67kg236ny] { width: 80px; height: 80px; left: 10%; animation-delay: 0s; }
.particle:nth-child(2)[b-n67kg236ny] { width: 60px; height: 60px; left: 20%; animation-delay: 2s; }
.particle:nth-child(3)[b-n67kg236ny] { width: 100px; height: 100px; left: 35%; animation-delay: 4s; }
.particle:nth-child(4)[b-n67kg236ny] { width: 70px; height: 70px; left: 50%; animation-delay: 1s; }
.particle:nth-child(5)[b-n67kg236ny] { width: 90px; height: 90px; left: 65%; animation-delay: 3s; }
.particle:nth-child(6)[b-n67kg236ny] { width: 75px; height: 75px; left: 80%; animation-delay: 5s; }

.download-container[b-n67kg236ny] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 206, 209, 0.4);
    text-align: center;
    max-width: 800px;
    width: 90%;
    position: relative;
    z-index: 1;
    animation: slideIn-b-n67kg236ny 0.6s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideIn-b-n67kg236ny {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.file-icon[b-n67kg236ny] {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00CED1, #20B2AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: white;
    animation: pulse-b-n67kg236ny 2s infinite;
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.3);
}

@keyframes pulse-b-n67kg236ny {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 206, 209, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 206, 209, 0.5);
    }
}

.file-name[b-n67kg236ny] {
    color: #00CED1;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    word-break: break-word;
    text-shadow: 1px 1px 2px rgba(0, 206, 209, 0.2);
}

.file-info[b-n67kg236ny] {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.info-item[b-n67kg236ny] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f0f9ff, #e0f7fa);
    padding: 12px 20px;
    border-radius: 10px;
    border-left: 3px solid #00CED1;
}

.info-item i[b-n67kg236ny] {
    color: #00CED1;
    font-size: 20px;
}

.info-label[b-n67kg236ny] {
    font-weight: 600;
    color: #2C3E50;
}

.info-value[b-n67kg236ny] {
    color: #555;
    font-family: 'Courier New', monospace;
}

.preview-section[b-n67kg236ny] {
    margin: 30px 0;
}

.preview-title[b-n67kg236ny] {
    color: #2C3E50;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.preview-container[b-n67kg236ny] {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

.preview-image[b-n67kg236ny] {
    max-width: 100%;
    max-height: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.preview-video[b-n67kg236ny] {
    width: 100%;
    max-height: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.preview-audio[b-n67kg236ny] {
    width: 100%;
    border-radius: 10px;
}

.preview-pdf[b-n67kg236ny] {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.buttons[b-n67kg236ny] {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn[b-n67kg236ny] {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary[b-n67kg236ny] {
    background: linear-gradient(135deg, #00CED1, #20B2AA);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.3);
}

.btn-primary:hover[b-n67kg236ny] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 206, 209, 0.4);
    background: linear-gradient(135deg, #20B2AA, #00CED1);
}

.btn-secondary[b-n67kg236ny] {
    background: white;
    color: #00CED1;
    border: 2px solid #00CED1;
    box-shadow: 0 3px 10px rgba(0, 206, 209, 0.2);
}

.btn-secondary:hover[b-n67kg236ny] {
    background: #00CED1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.3);
}

.footer[b-n67kg236ny] {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #999;
    font-size: 13px;
}

.footer-logo[b-n67kg236ny] {
    color: #00CED1;
    font-weight: bold;
}

/* Scrollbar styling */
.download-container[b-n67kg236ny]::-webkit-scrollbar {
    width: 10px;
}

.download-container[b-n67kg236ny]::-webkit-scrollbar-track {
    background: rgba(0, 206, 209, 0.1);
    border-radius: 10px;
}

.download-container[b-n67kg236ny]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00CED1, #20B2AA);
    border-radius: 10px;
}

.download-container[b-n67kg236ny]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #20B2AA, #00CED1);
}
/* /Views/File/Forbidden.cshtml.rz.scp.css */
.particles[b-sfjneu0ukm] {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle[b-sfjneu0ukm] {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float-b-sfjneu0ukm 15s infinite;
}

@keyframes float-b-sfjneu0ukm {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.6;
    }
}

.particle:nth-child(1)[b-sfjneu0ukm] { width: 80px; height: 80px; left: 10%; animation-delay: 0s; }
.particle:nth-child(2)[b-sfjneu0ukm] { width: 60px; height: 60px; left: 20%; animation-delay: 2s; }
.particle:nth-child(3)[b-sfjneu0ukm] { width: 100px; height: 100px; left: 35%; animation-delay: 4s; }
.particle:nth-child(4)[b-sfjneu0ukm] { width: 70px; height: 70px; left: 50%; animation-delay: 1s; }
.particle:nth-child(5)[b-sfjneu0ukm] { width: 90px; height: 90px; left: 65%; animation-delay: 3s; }
.particle:nth-child(6)[b-sfjneu0ukm] { width: 75px; height: 75px; left: 80%; animation-delay: 5s; }

.container[b-sfjneu0ukm] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 206, 209, 0.4);
    text-align: center;
    max-width: 600px;
    width: 90%;
    position: relative;
    z-index: 1;
    animation: slideIn-b-sfjneu0ukm 0.6s ease-out;
}

@keyframes slideIn-b-sfjneu0ukm {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lock-icon[b-sfjneu0ukm] {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00CED1, #20B2AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    animation: pulse-b-sfjneu0ukm 2s infinite;
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.3);
}

@keyframes pulse-b-sfjneu0ukm {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 206, 209, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 206, 209, 0.5);
    }
}

h1[b-sfjneu0ukm] {
    color: #00CED1;
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 206, 209, 0.3);
}

h2[b-sfjneu0ukm] {
    color: #2C3E50;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.description[b-sfjneu0ukm] {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.path[b-sfjneu0ukm] {
    background: linear-gradient(135deg, #f0f9ff, #e0f7fa);
    padding: 15px;
    border-radius: 10px;
    word-break: break-all;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #00838f;
    margin: 20px 0;
    border-left: 4px solid #00CED1;
}

.admin-note[b-sfjneu0ukm] {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #e65100;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #ff9800;
    font-size: 14px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.buttons[b-sfjneu0ukm] {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn[b-sfjneu0ukm] {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary[b-sfjneu0ukm] {
    background: linear-gradient(135deg, #00CED1, #20B2AA);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.3);
}

.btn-primary:hover[b-sfjneu0ukm] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 206, 209, 0.4);
    background: linear-gradient(135deg, #20B2AA, #00CED1);
}

.footer[b-sfjneu0ukm] {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #999;
    font-size: 13px;
}

.footer-logo[b-sfjneu0ukm] {
    color: #00CED1;
    font-weight: bold;
}
/* /Views/File/NotFound.cshtml.rz.scp.css */
.particles[b-9qcr1if2o4] {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle[b-9qcr1if2o4] {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float-b-9qcr1if2o4 15s infinite;
}

@keyframes float-b-9qcr1if2o4 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.6;
    }
}

.particle:nth-child(1)[b-9qcr1if2o4] { width: 80px; height: 80px; left: 10%; animation-delay: 0s; }
.particle:nth-child(2)[b-9qcr1if2o4] { width: 60px; height: 60px; left: 20%; animation-delay: 2s; }
.particle:nth-child(3)[b-9qcr1if2o4] { width: 100px; height: 100px; left: 35%; animation-delay: 4s; }
.particle:nth-child(4)[b-9qcr1if2o4] { width: 70px; height: 70px; left: 50%; animation-delay: 1s; }
.particle:nth-child(5)[b-9qcr1if2o4] { width: 90px; height: 90px; left: 65%; animation-delay: 3s; }
.particle:nth-child(6)[b-9qcr1if2o4] { width: 75px; height: 75px; left: 80%; animation-delay: 5s; }

.container[b-9qcr1if2o4] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 206, 209, 0.4);
    text-align: center;
    max-width: 600px;
    width: 90%;
    position: relative;
    z-index: 1;
    animation: slideIn-b-9qcr1if2o4 0.6s ease-out;
}

@keyframes slideIn-b-9qcr1if2o4 {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-icon[b-9qcr1if2o4] {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00CED1, #20B2AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    animation: pulse-b-9qcr1if2o4 2s infinite;
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.3);
}

@keyframes pulse-b-9qcr1if2o4 {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 206, 209, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 206, 209, 0.5);
    }
}

h1[b-9qcr1if2o4] {
    color: #00CED1;
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 206, 209, 0.3);
}

h2[b-9qcr1if2o4] {
    color: #2C3E50;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.description[b-9qcr1if2o4] {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.path[b-9qcr1if2o4] {
    background: linear-gradient(135deg, #f0f9ff, #e0f7fa);
    padding: 15px;
    border-radius: 10px;
    word-break: break-all;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #00838f;
    margin: 20px 0;
    border-left: 4px solid #00CED1;
}

.buttons[b-9qcr1if2o4] {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn[b-9qcr1if2o4] {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary[b-9qcr1if2o4] {
    background: linear-gradient(135deg, #00CED1, #20B2AA);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.3);
}

.btn-primary:hover[b-9qcr1if2o4] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 206, 209, 0.4);
    background: linear-gradient(135deg, #20B2AA, #00CED1);
}

.footer[b-9qcr1if2o4] {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #999;
    font-size: 13px;
}

.footer-logo[b-9qcr1if2o4] {
    color: #00CED1;
    font-weight: bold;
}
/* /Views/Home/Index.cshtml.rz.scp.css */
 /* Card Hover Effect - Hervorhebung beim Mouseover */
.card[b-rnk9zjvsp6] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card:not(.disable-hover):hover[b-rnk9zjvsp6] {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 206, 209, 0.4), 
                0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.card:not(.disable-hover):hover img[b-rnk9zjvsp6] {
    transform: scale(1.1);
}

.card img[b-rnk9zjvsp6] {
    transition: transform 0.3s ease;
}

/* Smooth hover for links inside cards */
.card a[b-rnk9zjvsp6] {
    color: inherit;
}

.card:not(.disable-hover):hover .card-title[b-rnk9zjvsp6] {
    color: #00CED1;
    transform: scale(1.05);
}

.card-title[b-rnk9zjvsp6] {
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Card Hover Effect - Card schwebt nach vorne */
.card-background-color[b-rnk9zjvsp6] {
    position: relative !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    cursor: pointer !important;
}

.card-background-color:not(.disable-hover):hover[b-rnk9zjvsp6] {
    transform: translateY(-20px) !important;
    box-shadow: 0 25px 50px rgba(0, 206, 209, 0.6), 
                0 15px 30px rgba(0, 0, 0, 0.2) !important;
    z-index: 999 !important;
}

/* Verhindere dass Kindelemente sich transformieren */
.card-background-color *[b-rnk9zjvsp6] {
    transform: none !important;
}

/* Nur Titel-Farbe ändern beim Hover */
.card-background-color:not(.disable-hover):hover .card-title[b-rnk9zjvsp6] {
    color: #00CED1 !important;
}

/* Link-Farbe beibehalten */
.card-background-color a[b-rnk9zjvsp6] {
    color: inherit !important;
}

/* Beschreibungs-Text beim Hover */
.card-background-color:not(.disable-hover):hover .card-text[b-rnk9zjvsp6] {
    color: #555 !important;
}

/* 3D-Perspektive für Container */
.container[b-rnk9zjvsp6] {
    perspective: 1000px;
}
/* /Views/Monitor/Monitor.cshtml.rz.scp.css */
.monitor-container[b-a9xe26hley] {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
}

.monitor-header[b-a9xe26hley] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.monitor-header h1[b-a9xe26hley] {
    margin: 0;
    font-size: 2em;
    font-weight: 600;
}

.monitor-header p[b-a9xe26hley] {
    margin: 10px 0 0 0;
    opacity: 0.9;
    font-size: 1.1em;
}

.monitor-controls[b-a9xe26hley] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.control-group[b-a9xe26hley] {
    display: flex;
    gap: 10px;
}

.monitor-controls .btn-start[b-a9xe26hley] {
    background-image: linear-gradient(#2d5016, #2d5016), linear-gradient(137.48deg, #4caf50 10%, #45a049 45%, #388e3c 67%, #4caf50 87%);
}

.monitor-controls .btn-stop[b-a9xe26hley] {
    background-image: linear-gradient(#4d1616, #4d1616), linear-gradient(137.48deg, #f44336 10%, #da190b 45%, #c62828 67%, #f44336 87%);
}

.monitor-controls .btn-stop:disabled[b-a9xe26hley] {
    opacity: 0.5;
    cursor: not-allowed;
}

.monitor-controls .btn-clear-all[b-a9xe26hley] {
    background-image: linear-gradient(#4d3416, #4d3416), linear-gradient(137.48deg, #ff9800 10%, #e68900 45%, #f57c00 67%, #ff9800 87%);
}

.status-group[b-a9xe26hley] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.status-group #status-text[b-a9xe26hley] {
    color: #212121;
    font-weight: 600;
}

    .status-group #total-events[b-a9xe26hley] {
        color: #212121;
        font-weight: 600;
    }

    .status-indicator[b-a9xe26hley] {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #ccc;
        animation: pulse-indicator-b-a9xe26hley 2s infinite;
    }

.status-indicator.connected[b-a9xe26hley] {
    background: #4caf50;
}

.status-indicator.disconnected[b-a9xe26hley] {
    background: #f44336;
    animation: none;
}

@keyframes pulse-indicator-b-a9xe26hley {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.event-count[b-a9xe26hley] {
    font-weight: 600;
    color: #666;
}

.monitor-tabs[b-a9xe26hley] {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn[b-a9xe26hley] {
    flex: 1;
    padding: 15px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.tab-btn:hover[b-a9xe26hley] {
    border-color: #667eea;
    background: #f5f7ff;
    transform: translateY(-2px);
}

.tab-btn.active[b-a9xe26hley] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.badge[b-a9xe26hley] {
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    min-width: 35px;
    text-align: center;
}

.tab-btn.active .badge[b-a9xe26hley] {
    background: rgba(255, 255, 255, 0.3);
}

.log-panels[b-a9xe26hley] {
    position: relative;
    min-height: 600px;
}

.log-panel[b-a9xe26hley] {
    display: none;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.log-panel.active[b-a9xe26hley] {
    display: block;
}

.panel-header[b-a9xe26hley] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 2px solid #e0e0e0;
}

.panel-header h3[b-a9xe26hley] {
    margin: 0;
    font-size: 1.2em;
    color: #333;
}

.btn-clear-panel[b-a9xe26hley] {
    padding: 6px 15px;
    background: #ff9800;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-clear-panel:hover[b-a9xe26hley] {
    background: #e68900;
}

.log-console[b-a9xe26hley] {
    height: 600px;
    overflow-y: auto;
    padding: 15px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
    line-height: 1.6;
    background: #1e1e1e;
    color: #d4d4d4;
}

.log-console[b-a9xe26hley]::-webkit-scrollbar {
    width: 10px;
}

.log-console[b-a9xe26hley]::-webkit-scrollbar-track {
    background: #2d2d2d;
}

.log-console[b-a9xe26hley]::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 5px;
}

.log-console[b-a9xe26hley]::-webkit-scrollbar-thumb:hover {
    background: #777;
}

.log-placeholder[b-a9xe26hley] {
    text-align: center;
    color: #888;
    padding: 40px;
    font-style: italic;
}

.log-entry[b-a9xe26hley] {
    padding: 8px 12px;
    margin-bottom: 4px;
    border-left: 3px solid;
    border-radius: 4px;
    animation: slideIn-b-a9xe26hley 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
}

@keyframes slideIn-b-a9xe26hley {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.log-entry.gateway[b-a9xe26hley] {
    background: rgba(25, 118, 210, 0.1);
    border-left-color: #1976d2;
}

.log-entry.homepage[b-a9xe26hley] {
    background: rgba(123, 31, 162, 0.1);
    border-left-color: #7b1fa2;
}

.log-entry.restapi[b-a9xe26hley] {
    background: rgba(56, 142, 60, 0.1);
    border-left-color: #388e3c;
}

.log-entry.level-warning[b-a9xe26hley] {
    border-left-color: #ffc107;
}

.log-entry.level-error[b-a9xe26hley] {
    border-left-color: #dc3545;
    background: rgba(220, 53, 69, 0.15);
}

.log-entry.level-critical[b-a9xe26hley] {
    border-left-color: #721c24;
    background: rgba(114, 28, 36, 0.2);
}

.log-tag[b-a9xe26hley] {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    flex-shrink: 0;
    text-transform: uppercase;
}

.log-tag.gateway[b-a9xe26hley] {
    background: #1976d2;
    color: white;
}

.log-tag.homepage[b-a9xe26hley] {
    background: #7b1fa2;
    color: white;
}

.log-tag.restapi[b-a9xe26hley] {
    background: #388e3c;
    color: white;
}

.log-level[b-a9xe26hley] {
    font-size: 11px;
    font-weight: bold;
    flex-shrink: 0;
    min-width: 70px;
}

.log-time[b-a9xe26hley] {
    color: #888;
    font-size: 11px;
    flex-shrink: 0;
}

.log-category[b-a9xe26hley] {
    color: #9cdcfe;
    font-size: 11px;
    flex-shrink: 0;
}

.log-message[b-a9xe26hley] {
    color: #d4d4d4;
    word-break: break-word;
    flex: 1;
}

.log-exception[b-a9xe26hley] {
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    background: rgba(220, 53, 69, 0.2);
    border-radius: 4px;
    color: #ff6b6b;
    font-size: 12px;
    white-space: pre-wrap;
    word-break: break-word;
}

.monitor-footer[b-a9xe26hley] {
    margin-top: 20px;
}

.stats-grid[b-a9xe26hley] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.stat-card[b-a9xe26hley] {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover[b-a9xe26hley] {
    transform: translateY(-5px);
}

.stat-label[b-a9xe26hley] {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.stat-value[b-a9xe26hley] {
    font-size: 32px;
    font-weight: bold;
    color: #667eea;
}
/* /Views/Shared/_Header.cshtml.rz.scp.css */
.header-container[b-2x9oqt3hr1] {
    position: fixed;
    display: flex;
    height: 100px;
    width: 100%;
    justify-content: space-between;
    align-content: center;
    border-bottom: medium 1px #05a3be;
    padding-bottom: 10px;
    box-shadow: 0px 5px 10px rgb(128, 204, 204);
    z-index: 100;
}

.main-logo[b-2x9oqt3hr1] {
    display: inline-block;
    height: 100%;
    margin-left: 5px;
    margin-top: 5px;
    border-radius: 3px;
}
    .main-logo img[b-2x9oqt3hr1] {
        height: -webkit-fill-available;
    }

.avatar-img[b-2x9oqt3hr1] {
    height: 75%;
    margin-right: 15px;
    margin-top: 5px;
    border-radius: 50%;
}

    .avatar-img:hover[b-2x9oqt3hr1] {
        opacity: 0.8;
        filter: hue-rotate(360deg);
        transition: filter 1s;
    }

.avatar-img-side[b-2x9oqt3hr1] {
    width: 75px;
}

.header-title[b-2x9oqt3hr1] {
    font-size: 24px;
}

#side-panel[b-2x9oqt3hr1] {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -500%;
    z-index: 200;
    border-left: 1px groove #333333;
    transition: right 0.3s ease-in-out;
    font-size: 24px;
}
#side-panel.show[b-2x9oqt3hr1] {
    right: 0;
}

.side-panel-flex-col[b-2x9oqt3hr1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
}

.close-x-button[b-2x9oqt3hr1] {
    background-color: transparent;
    color: red;
    border: 0;
    font-size: 15px;
    align-self: end;
    transition: transform 0.3s;
}

.close-x-button:hover[b-2x9oqt3hr1] {
    transform: scale(1.3);
}

.login-form[b-2x9oqt3hr1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.side-menu-inputs[b-2x9oqt3hr1] {
    margin: 5px 10px;
    align-self: stretch;
}

.side-menu-inputs > div[b-2x9oqt3hr1] {
    margin-bottom: 10px;
}

.side-menu-buttons[b-2x9oqt3hr1] {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.username-side[b-2x9oqt3hr1] {
    padding-top: 25px;
    margin: 0 10px;
}

/* Password input wrapper with toggle button */
.password-input-wrapper[b-2x9oqt3hr1] {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 40px;
}

.password-input-wrapper .input[b-2x9oqt3hr1] {
    padding-right: 45px !important;
    width: 100%;
    margin: 0 !important;
}

.password-toggle-btn[b-2x9oqt3hr1] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #05a3be;
    line-height: 1;
    opacity: 0.8;
}

.password-toggle-btn:hover[b-2x9oqt3hr1] {
    opacity: 1;
    color: #07c5e2;
}

.password-toggle-btn:focus[b-2x9oqt3hr1] {
    outline: 2px solid #05a3be;
    outline-offset: 2px;
    border-radius: 4px;
}
/* /Views/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand[b-srwgomaw9q] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a[b-srwgomaw9q] {
  color: #0077cc;
}

.btn-primary[b-srwgomaw9q] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-srwgomaw9q], .nav-pills .show > .nav-link[b-srwgomaw9q] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-srwgomaw9q] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-srwgomaw9q] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-srwgomaw9q] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-srwgomaw9q] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-srwgomaw9q] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
/* /Views/Shared/_Message.cshtml.rz.scp.css */
.message-content[b-fvda34s6ts] {
    position: fixed;
    display: flex;
    background: #67e532;
    border-radius: 5px;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -15%);
}

.error[b-fvda34s6ts] {
    background: #f1386a;
}

.message[b-fvda34s6ts] {
    display: flex;
    justify-content: center;
    margin: 0 30px;
}

.message-close-button[b-fvda34s6ts] {
    background-color: transparent;
    color: #000000;
    font-size: 15px;
    transition: transform 0.3s;
    margin-right: 5px;
}

    .message-close-button:hover[b-fvda34s6ts] {
        transform: scale(1.2) translateY(3px);
    }
