@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #212529;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 1rem;
    position: relative;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
}

.header h1 {
    margin: 0;
    font-size: 2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #007bff;
    text-shadow: 2px 2px 8px rgba(0,123,255,0.5);
}

.back-button {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background-color: #007bff;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.back-button:hover {
    background-color: #0056b3;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    transform: translateY(-6px);
}

.back-button:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.status-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.status-table th, .status-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.status-table th {
    background-color: #f2f2f2;
    color: #333;
}

.status-indicator {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.status-indicator.green {
    background-color: #4CAF50;
}

.status-indicator.red {
    background-color: #f44336;
}

#kuma-status {
    height: 100%;
    width: 100%;
}

iframe {
    height: calc(100vh - 86px);
    width: 100%;
    border: none;
}