/* Inline styles moved to external CSS file for better maintainability */

/* Navbar version text */
#navbarVersion {
    font-size: 0.75em;
    opacity: 0.8;
    font-weight: normal;
}

/* Status indicator */
#statusIndicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff6b6b;
    display: inline-block;
    margin-right: 6px;
}

/* Navbar actions container */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Config button */
#configButton {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

/* API URL config panel */
.api-url-config p {
    margin: 10px 0;
    color: #856404;
}

#currentApiUrl {
    margin-top: 10px;
    font-size: 12px;
    color: #856404;
}

/* Auth section headings */
#loginForm h2,
#registerForm h2 {
    margin-bottom: 20px;
    text-align: center;
}

/* Form button groups */
.form-button-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.form-button-group .btn {
    flex: 1;
}

/* Forgot password link */
.forgot-password-link {
    text-align: center;
    margin-top: 15px;
}

.forgot-password-link a {
    color: #6366f1;
    text-decoration: none;
    font-size: 0.9em;
}

/* Error containers */
#resetPasswordContainer,
#loginErrorContainer,
#registerErrorContainer {
    margin-top: 15px;
    min-height: 20px;
}

/* Registrace: jméno/adresa – vždy viditelné (ručně i po doplnění z ARES). Dříve display:none bránilo vyplnění bez úspěšného ARES. */
#aresDataFields {
    margin-top: 0;
    padding: 0;
    background: transparent;
    border: none;
}

/* Readonly input fields */
input[readonly] {
    background: rgba(255, 255, 255, 0.3);
}

/* ICO input */
#regIco {
    width: 100%;
}

/* ARES info text */
.ares-info-text {
    color: #999;
    font-size: 0.85em;
    display: block;
    margin-top: 5px;
}

/* Modal styles */
.vehicle-modal {
    display: none;
}

.service-record-add-modal,
.service-record-detail-modal {
    max-width: 400px;
    width: 33%;
}

/* Close button for modals */
.close-button-secondary {
    background: #6c757d;
    color: white;
}

/* Add vehicle form button group */
.add-vehicle-button-group {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.add-vehicle-button-group .btn {
    flex: 1;
}

/* Required field note */
.required-field-note {
    margin-top: 6px;
    font-size: 10px;
    color: #666;
}

/* VIN source info box */
#vinSourceInfo {
    margin-top: 15px;
    padding: 12px;
    background: #e8f4f8;
    border-left: 4px solid #667eea;
    border-radius: 4px;
    font-size: 12px;
    color: #555;
    display: none;
}

/* AI Features section */
.ai-features-intro {
    margin-bottom: 20px;
    color: #64748b;
}

.ai-features-admin-actions {
    margin-bottom: 24px;
}

.ai-features-admin-actions .btn {
    margin-right: 12px;
}

.ai-features-analyze-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.ai-features-stats-btn {
    background: #64748b;
}

#aiFeaturesStats {
    margin-bottom: 32px;
}

.ai-features-heading {
    margin-bottom: 16px;
}

/* Command Bot */
.command-bot-icon {
    font-size: 24px;
}

.command-bot-badge {
    display: none;
}

.command-bot-chat {
    display: none;
}

.command-bot-welcome-text {
    margin-top: 12px;
    font-size: 12px;
    color: #64748b;
}

/* Empty rulesets - placeholder for future styles */
.placeholder-style-1 {
    /* Reserved for future use */
}

.placeholder-style-2 {
    /* Reserved for future use */
}

