
body {
    font-family: 'SUITE', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 20px;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
}
.main-header {
    text-align: center;
    margin-bottom: 40px;
}
.main-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}
.intro-box p {
    margin: 4px 0;
    color: #a0a0a0;
    font-size: 1rem;
}
.main-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px; 
    gap: 40px;
    align-items: flex-start;
}
.distro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.distro-card{background-color:#1e1e1e;border:1px solid #333;border-radius:8px;box-shadow:0 4px 12px rgba(0,0,0,.4);padding:25px;text-decoration:none;color:inherit;transition:transform .2s ease-in-out,border-color .2s ease-in-out;display:flex;flex-direction:column;justify-content:space-between}.distro-card:hover{transform:translateY(-5px);border-color:#555}.card-header{display:flex;align-items:center;margin-bottom:20px}.distro-logo{width:40px;height:40px;object-fit:contain;margin-right:15px}.distro-card h2{font-size:1.5rem;font-weight:500;margin:0;color:#ffffff}.distro-info{font-size:.9rem}.distro-status{display:flex;align-items:center;margin-bottom:10px}.status-icon{width:20px;height:20px;margin-right:8px}.distro-last-update{color:#999}

.sidebar {
    position: sticky;
    top: 20px;
}
.sidebar h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 15px 0; 
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}
.sidebar h3:not(:first-child) {
    margin-top: 20px;
}
.info-table {
    width: 100%;
    border: 1px solid #333;
    border-radius: 8px;
    border-spacing: 0;
    overflow: hidden;
}
.info-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #282828;
    background-color: #1e1e1e;
}
.info-table tr:last-child td {
    border-bottom: none;
}
.info-table td:first-child {
    font-weight: 500;
    color: #a0a0a0;
    width: 80px;
}
.info-table td:last-child {
    color: #ffffff;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@keyframes rotate{from{transform:rotate(0)}to{transform:rotate(360deg)}}.rotating{animation:rotate 2s linear infinite}
@media (max-width: 1024px) {
    .main-content-wrapper {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
        width: auto;
        margin-top: 30px;
    }
}
.chart-container {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
}

.graph-container {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 5px;
    line-height: 0;
}

.graph-container img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}
.header-link {
    text-decoration: none;
    color: inherit;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: flex-start;
}

.status-card {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 25px;
}

.status-card-large {
    grid-column: span 2;
}

.status-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.cores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.core-box {
    background-color: #2a2a2a;
    border-radius: 6px;
    padding: 10px;
    font-size: 0.9em;
}

.core-title {
    font-weight: 700;
    margin-bottom: 5px;
    color: #ccc;
}
.core-stat strong {
    color: #fff;
}

.progress-bar-container {
    background-color: #2a2a2a;
    border-radius: 5px;
    overflow: hidden;
    height: 20px;
}

.progress-bar {
    background-color: #00B8E6;
    height: 100%;
    width: 0%;
    transition: width 0.5s ease-in-out;
}

.usage-text {
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
}

.disk-network-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.disk-temps-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.disk-temp-item {
    display: flex;
    justify-content: space-between;
    background-color: #2a2a2a;
    padding: 10px;
    border-radius: 6px;
}
.disk-name { font-weight: 700; }
.disk-temp { color: #fff; }

.realtime-network-text {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.realtime-network-text strong {
    font-size: 2rem;
    color: #00B8E6;
}

@media (max-width: 1200px) {
    .status-grid {
        grid-template-columns: 1fr;
    }
    .status-card-large {
        grid-column: auto;
    }
}
@media (max-width: 768px) {
    .disk-network-wrapper {
        grid-template-columns: 1fr;
    }
}
.realtime-network-wrapper {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    text-align: center;
}

.network-item {
    font-size: 1.5rem;
}

.network-item span {
    display: block;
    font-size: 1rem;
    color: #a0a0a0;
    margin-bottom: 5px;
}

.network-item strong {
    font-size: 2rem;
    color: #00B8E6;
}

.modal-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.2s, opacity 0.2s ease-in-out;
}

.modal-overlay.modal-visible {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.2s ease-in-out;
}

.modal-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #bbb;
}

.graph-container {
    cursor: pointer;
    transition: transform 0.2s;
}

.graph-container:hover {
    transform: scale(1.03);
}
