/* body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: #f5f5f5;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header h1 {
    margin: 0;
    cursor: pointer;
    user-select: none;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0ms;
}


header h1:hover {
    text-decoration: underline;
}

main {
    margin: 20px;
}

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

li {
    border: 1px solid #333;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f5f5f5;
}

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

li a:hover {
    color: #f5f5f5;
    background-color: #333;
}

li p {
    margin: 0;
    font-size: 14px;
}

input[type="text"] {
    border: 1px solid #999;
    padding: 6px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 250px;
    outline: none;
    background-color: #f5f5f5;
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

input[type="text"]:focus {
    border-color: #666;
}

footer {
    text-align: center;
} */

body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

header {
    background-color: #292929;
    padding: 20px;
    background-image: linear-gradient(to bottom right, #454545, #292929);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

h1 {
    color: #fff;
    font-size: 28px !important;
    cursor: pointer;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


input[type="text"] {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    width: 300px;
    background-color: #f9f9f9;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

input[type="text"]:focus {
    outline: none;
    border-color: #8f3f3f;
    box-shadow: 0px 0px 4px #8f3f3f;
}

main {
    padding: 20px;
}

ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

li {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-image: linear-gradient(to bottom, #fafafa, #eaeaea);

    width: 300px;
    height: 200px;
    max-height: 200px;
    overflow-y: auto;
    word-break: break-all;

}

a {
    color: #006699 !important;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #003366 !important;
}



p {
    margin-top: 10px;
    color: #666;
}

footer {
    background-color: #292929;
    color: #fff;
    padding: 10px;
    text-align: center;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#preview-container {
    position: fixed;
    z-index: 9999;
    display: none;
    pointer-events: none;
    /* Allows mouse to go over the iframe */
    border: 1px solid #ccc;
}


#preview-loading {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.wrap {
    width: 320px;
    height: 192px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #ccc;
}


iframe {
    width: 1280px;
    height: 786px;
    border: 0;

    -ms-transform: scale(0.25);
    -moz-transform: scale(0.25);
    -o-transform: scale(0.25);
    -webkit-transform: scale(0.25);
    transform: scale(0.25);

    -ms-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}