/*
 * Compiled stylesheet: static_skillsform.css
 * Shared by views:
 *   - app/Views/front/static/skillsform.php
 */

* { font-family: 'Inter', sans-serif; scroll-behavior: smooth; }
    
    /* Main container styling matching the event page */
    .skills-container {
        background: #f8fafc;
        min-height: 100vh;
        padding: 2rem 1rem;
    }
    
    .skills-card {
        background: #ffffff;
        border-radius: 24px;
        border: 1px solid #e6eef5;
        transition: box-shadow 0.2s;
        overflow: hidden;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .skills-card:hover {
        box-shadow: 0 25px 45px -12px rgba(0,40,70,0.15);
    }
    
    .card-header-custom {
        background: linear-gradient(135deg, #2C1A12 0%, #3E2A1F 100%);
        padding: 1.5rem 2rem;
        border-bottom: none;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-label {
        display: block;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #2C1A12;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .form-control {
        width: 100%;
        padding: 12px 16px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        font-size: 14px;
        transition: all 0.2s ease;
        color: #1e293b;
    }
    
    .form-control:focus {
        outline: none;
        border-color: #B76E2E;
        box-shadow: 0 0 0 3px rgba(183, 110, 46, 0.1);
        background: white;
    }
    
    textarea.form-control {
        resize: vertical;
        min-height: 80px;
    }
    
    .btn-submit {
        background: #B76E2E;
        color: white;
        border: none;
        border-radius: 50px;
        padding: 12px 28px;
        font-weight: 700;
        font-size: 14px;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }
    
    .btn-submit:hover {
        background: #9B5A24;
        transform: translateY(-2px);
    }
    
    .btn-cancel {
        background: transparent;
        color: #64748b;
        border: 1px solid #e2e8f0;
        border-radius: 50px;
        padding: 12px 28px;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.2s;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    
    .btn-cancel:hover {
        background: #f1f5f9;
        color: #334155;
    }
    
    .info-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(0,0,0,0.05);
        border-radius: 50px;
        padding: 0.5rem 1rem;
        font-size: 12px;
        margin: 0.2rem;
    }
    
    .section-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #2C1A12;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .section-title i {
        color: #B76E2E;
        font-size: 1.4rem;
    }
    
    /* Two column layout */
    .form-row {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        margin-bottom: 8px;
    }
    
    .form-col {
        flex: 1;
        min-width: 280px;
    }
    
    /* Toast message styling */
    .toast-message {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 9999;
        padding: 16px 24px;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 500;
        animation: slideIn 0.3s ease;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    
    .toast-success {
        background: #10b981;
        color: white;
        border-left: 4px solid #047857;
    }
    
    .toast-error {
        background: #ef4444;
        color: white;
        border-left: 4px solid #b91c1c;
    }
    
    @keyframes slideIn {
        from {
            transform: translateX(100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    @keyframes slideOut {
        from {
            transform: translateX(0);
            opacity: 1;
        }
        to {
            transform: translateX(100%);
            opacity: 0;
        }
    }
    
    @media (max-width: 768px) {
        .skills-container {
            padding: 1rem;
        }
        .card-header-custom {
            padding: 1rem 1.5rem;
        }
        .toast-message {
            top: 10px;
            right: 10px;
            left: 10px;
            text-align: center;
        }
    }