/* Styles spécifiques pour la page pool.php */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.header-container {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    color: #2c3e50;
    margin-bottom: 10px;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 15px;
    font-size: 28px;
}

.welcome-message {
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
}

.username {
    font-weight: bold;
    color: #2c3e50;
}

/* Styles pour les catégories */
.category-section {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
}

.category-header {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.category-header h2 {
    margin: 0;
    font-size: 18px;
    color: #343a40;
    display: flex;
    align-items: center;
}

.category-header h2::before {
    margin-right: 10px;
}

.toggle-icon {
    font-size: 20px;
    color: #6c757d;
    transition: transform 0.3s ease;
}

/* Styles pour la liste d'outils */
.tools-list {
    list-style: none;
    padding: 0;
    margin: 0;
    transition: max-height 0.5s ease;
    max-height: 2000px;
    overflow: hidden;
}

.tools-list.collapsed {
    max-height: 0;
}

.tool-item {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.tool-item:last-child {
    border-bottom: none;
}

.tool-item:hover {
    background-color: #f8f9fa;
}

.tool-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
}

.tool-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.tool-description {
    color: #6c757d;
    font-size: 14px;
}

.tool-arrow {
    font-size: 20px;
    color: #4CAF50;
    transition: transform 0.2s ease;
}

.tool-item:hover .tool-arrow {
    transform: translateX(5px);
}

/* Informations de version */
.version-info {
    text-align: center;
    color: #6c757d;
    font-size: 12px;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        margin: 20px auto;
        padding: 15px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .category-header {
        padding: 12px 15px;
    }
    
    .category-header h2 {
        font-size: 16px;
    }
    
    .tool-link {
        padding: 12px 15px;
    }
    
    .tool-title {
        font-size: 15px;
    }
    
    .tool-description {
        font-size: 13px;
    }
}