* {
    box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
    font-family: "Inter", sans-serif;
}

i {
    opacity: 0.5;
    font-size: small;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "IBM Plex Mono", monospace;
}

#main-content {
    margin: auto;
    padding: 10px;
    width: 95vw;
    max-width: 800px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    vertical-align: top;
    width: 50%;
}

.specs-image {
    text-align: right;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: #1a1a1a;
    border: 2px solid #404040;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    border-color: #00d4ff;
    background: #0f3d47;
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 212, 255, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
}

.service-card h3 {
    margin: 10px 0 8px 0;
    font-size: 20px;
    font-weight: 600;
}

.service-description {
    font-size: 14px;
    color: #b0b0b0;
    margin: 5px 0 10px 0;
}

.service-storage {
    font-size: 12px;
    color: #00d4ff;
    margin: 0;
    font-weight: 500;
}

#about-exif {
    border: 2px solid #555555;
    padding: 12px;
    border-radius: 12px;
    box-sizing: border-box;
}

#exif-info {
    display: none;
}

a {
    color: inherit;
    text-decoration: dotted;
}

/* Status Section Styles */
.status-container {
    margin-top: 20px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.status-card {
    background: #1a1a1a;
    border: 2px solid #404040;
    border-radius: 12px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.status-card:hover {
    border-color: #00d4ff;
    background: #1a2a3a;
    box-shadow: 0 8px 16px rgba(0, 212, 255, 0.15);
    transform: translateY(-4px);
}

.status-icon {
    font-size: 32px;
    margin-bottom: 12px;
    color: #00d4ff;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-label {
    font-size: 12px;
    color: #888888;
    text-transform: uppercase;
    font-family: "IBM Plex Mono", monospace;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.status-value {
    font-size: 20px;
    font-weight: 700;
    color: #00d4ff;
    font-family: "IBM Plex Mono", monospace;
    margin-bottom: 8px;
}

.status-value.status-online {
    color: #00ff88;
}

.status-value.status-offline {
    color: #ff4444;
}

.status-bar {
    width: 100%;
    height: 6px;
    background: #2a2a2a;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 8px;
}

.status-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: #00d4ff;
    transition: width 0.5s ease;
}

.status-bar-fill.normal {
    background: #00d4ff;
}

.status-bar-fill.warning {
    background: #ff8800;
}

.status-bar-fill.critical {
    background: #ff4444;
}

.status-bar-fill.good {
    background: #00ff88;
}

.status-updated {
    font-size: 11px;
    color: #666666;
    margin-top: 12px;
    text-align: right;
    font-style: italic;
}