/*!
 * Copyright © 2024–2026 aplexi (https://aplexi.ai). All rights reserved.
 * Proprietary. Not licensed for redistribution, derivative works, or
 * use as a design reference for competing products.
 * License: https://aplexi.ai/md-render/?md=/static/docs/aplexi-license.md
 */
/* Base styles */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f8f9fa;
}

/* Common button styles */
button {
    padding: 12px;
    background: rgb(0, 57, 146);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

button:hover {
    background: rgb(0, 63, 164);
}

/* Link styles */
a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Container styles */
.container {
    background: white;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Form styles */
input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
select {
    width: 100%;
    padding: 10px;
    margin: 2px 0 15px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

/* User info styles */
.user-info {
    text-align: right;
    padding: 12px 15px 10px 15px;
    font-size: 14px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    margin: 10px;
    position: sticky;
    top: 10px;
    z-index: 1000;
}