/* Folder Card Design */
.folder-card {
    position: relative;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.folder-card:hover {
    transform: translateY(-5px);
}

.folder-tab {
    width: 40%;
    height: 15px;
    background: linear-gradient(to right, #3b82f6, #2563eb);
    border-radius: 10px 10px 0 0;
    margin-left: 0;
    position: relative;
    top: 2px;
    /* Slight overlap */
}

.folder-body {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 0 10px 10px 10px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.folder-text {
    color: white;
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Shine effect on hover */
.folder-body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0 10px 10px 10px;
    pointer-events: none;
}