
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
}
.dashboard-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.dashboard-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 50px 40px;
    width: 100%;
    max-width: 900px;
    text-align: center;
}
.logo-container {
    margin-bottom: 30px;
}
.logo-container img {
    max-width: 120px;
    height: auto;
}
.dashboard-title {
    color: #333;
    margin-bottom: 35px;
    font-size: 2rem;
    font-weight: bold;
}
.role-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.role-tile {
    background: linear-gradient(145deg, #424242, #616161);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    color: #f5f5f5;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.role-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}
.role-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}
.role-label {
    font-size: 1.4rem;
    font-weight: bold;
}
.logout-btn {
    display: inline-block;
    width: 100%;
    background-color: #dc272c;
    color: #fff;
    padding: 14px 0;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}
.logout-btn:hover {
    background-color: #b31f24;
}
@media (max-width: 600px) {
    .logo-container img {
        max-width: 90px;
    }
    .dashboard-card {
        padding: 25px 15px;
    }
    .role-grid {
        grid-template-columns: 1fr;
    }
}
/* Wspólny topbar */
.appbar{background:#d62828;color:#fff;padding:12px 16px;display:flex;align-items:center;justify-content:space-between}
.appbar .left{display:flex;align-items:center;gap:10px}
.appbar .logo{height:24px}
.appbar a{color:#fff;text-decoration:none;margin-left:12px}
