.mm-files-wrap {
    padding: 30px;
    background: #fafafa;
    border-radius: 12px;
}

.mm-files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.mm-file-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}
.mm-file-card {
    position: relative;
}
.mm-file-card a.mm-file-delete {
    position: absolute;
    top: 20px;
    right: 20px;
}
.mm-file-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.mm-file-icon-wrap svg {
    width: 36px;
    height: 36px;
    color: red !important;
}

.mm-file-body {
    margin-top: 10px;
}

.mm-file-name {
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

.mm-file-meta {
    font-size: 13px;
    color: #777;
}

.mm-file-download-btn {
    display: inline-block;
    margin-top: 10px;
    background: rgb(225,62,32) !important;
    color: #fff;
    padding: 6px 12px;
    border-radius: 30px !important;
    text-decoration: none;
    font-size: 13px;
}
.mm-file-download-btn:hover {
    background: rgb(225,62,32);
    color: #fff;
}
.mm-no-files {
    text-align: center;
    padding: 30px;
    color: #777;
    font-size: 14px;
}