body {
    background-color: #f5f7fa;
    font-family: Arial, sans-serif;
    margin: 0;
}

/* Logowanie */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-box {
    max-width: 400px;
    width: 90%;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.full-width-input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Dashboard */
.dashboard-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    text-align: center;
    color: #eeeeee;
}

.content-card {
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.refresh-btn {
    padding: 12px 30px;
    font-size: 16px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    font-weight: bold;
}

.refresh-btn:hover {
    background-color: #2980b9;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 15px;
}

.bold-label {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
    display: block;
}

.text-center { text-align: center; }
.mb-30 { margin-bottom: 30px; }
.update-text { font-size: 14px; color: #7f8c8d; margin-top: 10px; font-style: italic; }

/* WoW Tables */
.content-card table {
    width: 100%;
    border-collapse: collapse;
}

.content-card table th {
    padding: 10px 12px;
    text-align: left;
    font-size: 13px;
    color: #2c3e50;
    border-bottom: 2px solid #ddd;
    position: sticky;
    top: 0;
    background-color: #f8f9fa;
    z-index: 1;
}

.content-card table td {
    padding: 8px 12px;
}

.content-card table tbody tr:hover {
    background-color: #f8f9fa;
}