/* File Manager Frontend Styles */
.file-manager-frontend {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Categories Section */
.fmp-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.fmp-category {
    background: #f4f4f4;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.fmp-categories .fmp-category h3 {
    font-size: 1.0rem !important;
    
    
    
}

.fmp-category:hover {
    background: #0073aa;
    color: #fff;
}

/* Files Table */
.fmp-file-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.fmp-file-table th,
.fmp-file-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.fmp-file-table th {
    background-color: #0073aa;
    color: #fff;
}

.fmp-file-table tr {
    transition: box-shadow 0.3s ease;
}

.fmp-file-table tr:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Download Button */
.fmp-download-button {
    background: #0073aa;
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.fmp-download-button:hover {
    background: #005177;
}