/* Reset & Full-screen map */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#map {
    width: 100%;
    height: 100vh;
}

/* POI popup styling */
.poi-popup img {
    max-width: 200px;
    max-height: 150px;
    display: block;
    margin-top: 8px;
    border-radius: 4px;
}

.poi-popup h3 {
    margin: 0 0 4px 0;
    font-size: 14px;
}

.poi-popup p {
    margin: 0 0 6px 0;
    font-size: 12px;
    color: #555;
}

/* Admin page styles */
.admin-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.admin-container h1 {
    margin-bottom: 20px;
    color: #333;
}

.admin-section {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.admin-section h2 {
    margin-bottom: 12px;
    font-size: 18px;
    color: #444;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.btn:hover {
    background: #0055aa;
}

.btn-danger {
    background: #cc3333;
}

.btn-danger:hover {
    background: #aa2222;
}

.btn-success {
    background: #28a745;
}

.btn-success:hover {
    background: #218838;
}

.toggle-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.status-enabled {
    background: #d4edda;
    color: #155724;
}

.status-disabled {
    background: #f8d7da;
    color: #721c24;
}

.poi-list {
    margin-top: 12px;
}

.poi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 8px;
}

.poi-item-info {
    flex: 1;
}

.poi-item-info strong {
    font-size: 14px;
}

.poi-item-info small {
    color: #777;
    display: block;
    margin-top: 2px;
}

.message {
    padding: 10px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 14px;
}

.message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
