/* filebox-styles.css */
/* This is the CSS file for your WordPress project. */

#my-search {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.my-file-box {
    max-height: 300px;
    overflow: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
}

.my-file-link {
    display: block;
    margin-bottom: 5px;
    padding: 8px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s;
}

.file-link:hover {
    background-color: #e9e9e9;
}
