* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121212;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.dashboard-container {
    max-width: 600px;
    width: 100%;
    background-color: #1e1e1e;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-pic {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    border-radius: 50%;
    margin: 0 auto 15px;
}

h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.subtitle {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-top: 5px;
}

.grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.card {
    background-color: #2a2a2a;
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
}

.card h3 {
    font-size: 0.85rem;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.status-wrapper, .info-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

h2 {
    font-size: 1.3rem;
    font-weight: 500;
}

.status-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #555; /* Default */
    box-shadow: 0 0 10px rgba(0,0,0,0);
}

/* Status Colors */
.status-busy { background-color: #ff4757; box-shadow: 0 0 10px rgba(255, 71, 87, 0.5); }
.status-working { background-color: #ffa502; box-shadow: 0 0 10px rgba(255, 165, 2, 0.5); }
.status-free { background-color: #2ed573; box-shadow: 0 0 10px rgba(46, 213, 115, 0.5); }

.icon {
    font-size: 1.5rem;
}

.hint {
    font-size: 0.8rem;
    color: #777;
    margin-top: 10px;
}