@font-face {
    font-family: 'Geomanist';
    src: url('https://eudonia.fr/wp-content/uploads/generatepress/fonts/geomanist-regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Base styles */
body {
    font-family: 'Geomanist', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* Header and Navigation */
.header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Form Elements */
.form-control, .btn {
    font-family: 'Geomanist', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.competence-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 4px;
}

.competence-item .handle {
    cursor: move;
    padding: 0 10px;
    color: #666;
}

.delete-competence {
    margin-left: auto;
}

.competence-list {
    list-style: none;
    padding: 0;
}

/* File Preview */
#filesPreview img {
    max-width: 200px;
    margin: 10px;
}

/* Results Table */
.result-table {
    width: 100%;
    overflow-x: auto;
}

.result-table th, 
.result-table td {
    vertical-align: middle;
    padding: 10px;
}

/* Button Styles */
.btn-group .btn {
    transition: all 0.3s ease;
}

.btn-group .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-group .btn.active {
    position: relative;
}

.btn-group .btn.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: currentColor;
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .btn-group {
        width: 100%;
        justify-content: center;
    }

    .competence-item {
        flex-wrap: wrap;
        gap: 10px;
    }

    .result-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-group .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}
    .song-lyrics {
        white-space: pre-line;
        line-height: 1.6;
        font-size: 1.1em;
    }
    .card {
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        margin-bottom: 20px;
    }
    .card-header {
        background-color: #f8f9fa;
        border-bottom: 1px solid rgba(0,0,0,0.125);
    }
    .card-body {
        padding: 20px;
    }    
    .nav-tabs .nav-link {
        color: #495057;
        font-weight: 500;
    }
    
    .nav-tabs .nav-link.active {
        color: #0d6efd;
        font-weight: 600;
    }
    
    .tab-content {
        padding-top: 1rem;
    }