/* Általános alapstílusok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #74ebd5, #acb6e5);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Wrapper keret */
.wrapper {
    max-width: 450px;
    width: 100%;
    background: #fff;
    color: #333;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Fejléc */
.header {
    background: #007bff;
    color: #fff;
    text-align: center;
    padding: 20px 15px;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.header h1 {
    font-size: 24px;
    font-weight: bold;
}

.header p {
    font-size: 14px;
    opacity: 0.9;
}

.logout-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc3545;
    color: #fff;
    padding: 10px 15px;
    font-size: 12px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.logout-btn:hover {
    background: #c82333;
}

/* Tartalom */
.content {
    padding: 20px;
    text-align: left;
}

.content h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #007bff;
}

/* Űrlap */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

form label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

form input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
}

form input:focus {
    border-color: #007bff;
}

form button {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background: #0056b3;
}

/* Felhasználói információk */
.user-info p, .admin-section form label {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.user-info p strong {
    color: #007bff;
}

/* Akciógombok */
.actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.actions .btn {
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-location {
    background: #28a745;
    color: white;
}

.btn-location:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(40, 167, 69, 0.3);
}

.btn-call {
    background: #dc3545;
    color: white;
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(220, 53, 69, 0.3);
}

/* Lábjegyzet */
.footer {
    text-align: center;
    font-size: 12px;
    color: #777;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 0 0 15px 15px;
}

/* Reszponzív megjelenés */
@media (max-width: 500px) {
    .wrapper {
        max-width: 100%;
    }

    .header h1 {
        font-size: 20px;
    }

    .header p {
        font-size: 12px;
    }
}
