/* Main global styles */

:root {
    /* Plenitude Brand Colors */
    --primary-color: #009E62; /* Verde scuro */
    --secondary-color: #95B849; /* Verde muso */
    --accent-color: #FFCD00; /* Giallo */
    --success-color: #009E62;
    --warning-color: #FFCD00;
    --danger-color: #dc3545;
    --info-color: #95B849;
    --dark-color: #212529;
    --light-color: #f8f9fa;

    /* Gradient definitions */
    --gradient-a: radial-gradient(circle, #95B849, #FFCD00);
    --gradient-b: radial-gradient(circle, #009E62, #95B849);
    --gradient-c: radial-gradient(circle, #009E62, #95B849 50%, #FFCD00);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
}

/* Status badges */
.badge-draft {
    background-color: #6c757d;
}

.badge-saved {
    background-color: #95B849;
}

.badge-confirmed {
    background-color: #009E62;
}

/* Loading spinner */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Utility classes */
.cursor-pointer {
    cursor: pointer;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
