* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── Login ───────────────────────────────────────── */
.login-container {
    background-color: #111111;
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 2.5rem;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.login-container h1 {
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
}

input {
    width: 100%;
    padding: 12px 14px;
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

input:focus {
    border-color: #444444;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #1e1e1e;
    border: 1px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

button[type="submit"]:hover {
    background-color: #2a2a2a;
}

.eroare {
    color: #ff4444;
    font-size: 13px;
    text-align: center;
    min-height: 18px;
}

/* ─── Dashboard ───────────────────────────────────── */
.dashboard-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    width: 100%;
    max-width: 800px;
}

.dashboard-container h1 {
    font-size: 1.4rem;
    font-weight: 300;
    color: #888888;
}

.butoane {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    width: 100%;
}

.butoane a {
 display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.2rem;
    background-color: #111111;
    border: 1px solid #222222;
    border-radius: 10px;
    color: #cccccc;
    text-decoration: none;
    font-size: 13px;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.butoane a:hover {
    background-color: #1a1a1a;
    border-color: #444444;
    color: #ffffff;
}

.butoane a img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    max-width: 650px;
    max-height: 650px;
}

#btn-logout {
    padding: 10px 24px;
    background-color: transparent;
    border: 1px solid #333333;
    border-radius: 8px;
    color: #666666;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

#btn-logout:hover {
    border-color: #ff4444;
    color: #ff4444;
}