html {
    height: auto !important;
    overflow: auto !important;
}

body {
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
    min-height: 100vh;
    height: auto !important; /* Wymuszenie wzrostu ponad 100% */
    overflow: auto !important; /* Nadpisanie blokady z base.css */
}

.admin-panel {
    width: 90%;
    max-width: 1200px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.tabs {
    border-bottom: 2px solid #ddd;
    margin-bottom: 1.5rem;
}

.tab-link {
    padding: 0.8rem 1.5rem;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 1rem;
    color: #555;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.3s, border-color 0.3s;
}

.tab-link:hover {
    color: #007bff;
}

.tab-link.active {
    color: #007bff;
    border-color: #007bff;
    font-weight: bold;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.info-section, .test-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 5px;
}

.test-section button {
    padding: 0.5rem 1rem;
    border: 1px solid #007bff;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.test-section button:hover {
    background-color: #0056b3;
}

.test-section p {
    margin-top: 0.8rem;
    font-family: monospace;
    background-color: #f8f9fa;
    padding: 0.5rem;
    border-radius: 4px;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: #007bff;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

/* --- Dark Mode Styles --- */
.dark-mode body {
    background-color: #1E1E1E;
    color: #E9ECEF;
}

.dark-mode .admin-panel {
    background-color: #2C2F33;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.dark-mode h1,
.dark-mode h2,
.dark-mode h3 {
    color: #E9ECEF;
}

.dark-mode .tabs {
    border-bottom-color: #3A3D42;
}

.dark-mode .tab-link {
    color: #ADB5BD;
}

.dark-mode .tab-link:hover {
    color: #5865F2;
}

.dark-mode .tab-link.active {
    color: #5865F2;
    border-color: #5865F2;
}

.dark-mode .info-section,
.dark-mode .test-section {
    border-color: #3A3D42;
}

.dark-mode .test-section p {
    background-color: #18191C;
    color: #E9ECEF;
}

.dark-mode .back-link {
    color: #5865F2;
}
