/* style.css */
.game-post {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 20px;
    margin-bottom: 20px;
}
.game-post h2 {
    color: #2c3e50;
}
.game-post .game-description {
    font-size: 1.2em;
    color: #34495e;
}
.game-post .game-category {
    font-weight: bold;
    color: #e74c3c;
}
.games-preview img {
    border: 1px solid #ccc;
    border-radius: 4px;
}
.remove-media {
    font-weight: bold;
    background: #dc3232;
    color: #fff !important;
}
.games-preview-item {
    position: relative;
    display: inline-block;
    margin-right: 5px;
}
.games-preview-item .remove-media {
    position: absolute;
    top: 0;
    right: 2px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 16px;
    line-height: 16px;
    padding: 2px 2px;
    cursor: pointer;
    border-radius: 50%;
}
.toggle-featured-star{
    cursor: pointer;
    font-size: 20px;
    color: #ccc;
}
.toggle-featured-star.filled {
    color: #f5c518;
}
.games-swiper {
    margin: 40px 0;
}
.swiper-slide {
    position: relative;
    text-align: center;
}
.game-thumb {
    display: block;
    text-decoration: none;
    color: inherit;
}
.game-thumb img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.featured-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: gold;
    color: #fff;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 50%;
    font-size: 14px;
}
/* Style the upload files meta box */
#upload-files-container .folder-group{
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}
#upload-files-container .folder-group button.folder-remove{
    margin-left: auto;
    margin-bottom: 8px;
    padding: 4px 8px;
    line-height: 20px;
    font-size: 10px;
    min-height: auto;
}
#upload-files-container .folder-group .folder-name-container input[type=text]{
    width: 100%;
    margin-bottom: 10px;
    padding: 5px 10px;
    font-size: 16px;
    line-height: 16px;
}
#upload-files-container .folder-group .file-upload-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#upload-files-container .folder-group .file-upload-container .file-upload, #upload-files-container .folder-group .file-upload-container .file-preview{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}
.folder-button-group{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.faq-folder {
    margin-bottom: 10px;
}
.faq-toggle {
    background: #ccc;
    color: #000;
    width: 100%;
    border: none;
    outline: none;
    font-size: 18px;
    font-family: "Epilogue-Medium", sans-serif;
    font-weight: 500;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}
.faq-toggle[aria-expanded="true"], .faq-toggle.open {
    background: #d8d493;
}
.faq-toggle .folder-remove-btn{
    display: flex;
    align-items: center;
}
.faq-toggle .faq-arrow-up, .faq-toggle.open .faq-arrow-down{
    margin-right: 10px;
    font-size: 20px;
}
.faq-toggle .faq-arrow-up {
    display: block;
}
.faq-toggle .faq-arrow-down {
    display: none;
}
.faq-toggle.open .faq-arrow-up {
    display: none;
}
.faq-toggle.open .faq-arrow-down {
    display: block;
}
.faq-close.remove-folder{
    font-size: 12px;
    font-family: "Epilogue-Medium", sans-serif;
    margin-right: 10px;
    background-color: #b82d2d;
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
}
.faq-content {
    color: #000;
    padding: 10px 20px;
    border-radius: 6px;
    margin-top: 2px;
    font-family: "Epilogue-Medium", sans-serif;
    font-size: 14px;
    border: 1px solid #ccc;
}
.file-list {
    list-style: disc inside;
    margin: 0px;
    padding: 0;
}
.file-list li {
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    list-style-type: none;
}
.remove-uploaded-file {
    background: #b82d2d;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 2px 10px;
    margin-left: 12px;
    cursor: pointer;
    font-size: 14px;
}