.file-dash-main {
    max-width: 100%;
    margin: 0 auto;
    height:100vh;
}

.file-system-title {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px 30px;
    margin: 0 auto 40px;
    max-width: 300px;
    color: white;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.file-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 80%;
    margin: 0 auto;
}
.file-cards-grid a{
    text-decoration: none;
}
.file-client-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.file-client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.file-folder-icon {
    width: 60px;
    height: 48px;
    margin: 0 auto 20px;
    position: relative;
}

.file-folder-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 8px;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    border-radius: 2px 2px 0 0;
}

.file-folder-icon::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 100%;
    height: 42px;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.3);
}

.file-client-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.file-client-info {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 8px;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .file-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .file-client-card {
        padding: 20px;
    }
    
    .file-folder-icon {
        width: 50px;
        height: 40px;
    }
    
    .file-client-name {
        font-size: 0.9rem;
    }
}