/* Styles for the admin page */
#select_file {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;
    transition: background-color 0.3s;
}

#select_file:hover {
    background-color: #005177;
}

#file_list {
    list-style: none;
    padding: 0;
}

#file_list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
}

#file_list li a {
    color: #0073aa;
    text-decoration: none;
}

#file_list li a:hover {
    text-decoration: underline;
}

.remove_file {
    background-color: #dc3232;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.remove_file:hover {
    background-color: #a60000;
}

/* Styles for the shortcode display */
.custom-files-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 20px;
}

.custom-files-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-files-list li {
    background-color: #f0f0f0;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
    max-width: 400px;
}

.custom-files-list li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.custom-files-list li a:hover {
    text-decoration: underline;
    color: #0073aa;
}