body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-image: url('../photo/PixelSound365.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    padding-top: 40px; /* μικρότερο κενό από πάνω */
}

.dashboard-container {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    margin: 20px auto;
}

h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.success-msg {
    color: lightgreen;
    font-weight: bold;
    text-align: center;
}

.error-msg {
    color: red;
    font-weight: bold;
    text-align: center;
}

.button-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

.dashboard-btn {
    padding: 12px 24px;
    background-color: rgb(255, 215, 0);
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.dashboard-btn:hover {
    background-color: #FFC300;
    transform: scale(1.05);
}

.back-home {
    background-color: #607D8B;
}
