/**
 * CPOS Cloud - Base Styles
 * Estilos base sin colores (que están en los temas)
 */

/* ========================================
   BASE VARIABLES
   ======================================== */

:root {
    /* Custom variables */
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-size: 16px;
    --radius: 0.625rem;
}

/* ========================================
   UTILITIES & BASE STYLES
   ======================================== */

/* Hide cloak elements before Alpine.js loads */
[x-cloak] {
    display: none !important;
}

/* Global font */
* {
    font-family: var(--font-sans);
}

/* ========================================
   IONIC COMPONENT CUSTOMIZATIONS
   ======================================== */

/* Smooth transitions */
ion-button,
ion-card,
ion-item,
ion-list,
ion-menu,
ion-toolbar {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Rounded corners for cards */
ion-card {
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

body.dark ion-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Button styling */
ion-button {
    --border-radius: var(--radius);
    text-transform: none;
    font-weight: 500;
}

/* Input styling */
ion-input,
ion-textarea,
ion-select {
    --border-radius: var(--radius);
}

/* Toolbar styling */
ion-toolbar {
    --border-width: 0 0 1px 0;
}

/* List items */
ion-item {
    --border-radius: var(--radius);
}

/* Menu */
ion-menu {
    --width: 280px;
}

/* Remove default borders */
ion-list {
    padding: 0;
}
