body {
    font-family: Calibri, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #abdbe3;
    color: #000;
    text-align: left;
    font-size: 16px;
    -webkit-font-smoothing: subpixel-antialiased;
    margin: 0;
    padding: 0;
    height: 100%;
}
html, body {
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
h1, h2, h3, b {
    color: #2C3E50;
}
.container, .content {
    max-width: 100vw;
    align-self: center;
    flex-wrap: wrap;
    text-align: left;
}
.content {
    padding: 10px;
}
.center-container {
    display: flex;
    flex-direction: column;
    align-items: left;
    max-width: 1000px;
    width: 100%;
}

.one, .two, .three, .four {
    border: 1px solid black;
    background-color: #f5f5f5;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 10px;
}

.one, .three {
    flex: 1;
    display: none;
}

.two {
    text-align: left;
    width: 100%;
}

.four {
    text-align: center;
    width: 100%;
    font-size: 20px;
    align-items: center;
    margin-top: -10px;
    padding-top: 20px;
    margin-bottom: 10px;
}

/* Navigation Links */
.top-right-link {
    float: right;
    font-size: 14px;
}

.bottom-right-link {
    text-align: right;
    float: right;
    color: #e6fffe;
    padding: 5px 10px;
    font-size: 14px;
    margin: 10px 0;
}

.code-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background-color: #2d2d2d;
}

.code-header {
    background-color: #1e1e1e;
    color: #dcdcdc;
    font-size: 12px;
    font-weight: bold;
    padding: 8px 16px;
    text-align: left;
}

.code-container {
    background-color: #fff;
    font-family: 'Courier New', Courier, monospace;
    overflow-x: auto;
    padding: 10px;
}
.one {
    position: absolute;
    top: 0px;
}
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 900;
    border-bottom: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    background-color: white;
    flex-wrap: wrap;
}

.top-bar a {
    color: blue;
    text-decoration: none;
    font-size: 20px;
}

.left-content, .right-content {
    display: flex;
    align-items: center;
}

.right-content img {
    height: 25px;
    cursor: pointer;
    margin-left: 15px;
}
.iframe-container {
    margin-top: 60px;
    width: 100vw;
    height: 100vh;
}

iframe {
    width: 100%;
    height: calc(100vh - 60px);
    border: none;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    text-align: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    width: 80%;
    border-radius: 8px;
    position: relative;
    text-align: left;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #666;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 5px;
}

input {
    width: 80%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    margin-right: 8px;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.save-btn, .cancel-btn {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

.save-btn {
    background: #007bff;
    color: white;
}

.cancel-btn {
    background: #ccc;
    color: black;
}

.save-btn:hover {
    background: #0056b3;
}

.cancel-btn:hover {
    background: #bbb;
}

/* Mobile Responsiveness */
/*
@media (max-width: 1024px), (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        width: 98%;
    }

    .center-container {
        width: 98%;
    }

    .four, .two {
        width: 98%;
        margin-bottom: 10px;
        padding: 15px;
    }

    .one, .three {
        display: none;
    }

    .top-right-link, .bottom-right-link {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        height: 50px;
        padding: 0 5px;
    }

    .top-bar a {
        font-size: 18px;
    }

    .right-content img {
        height: 20px;
    }

    .modal-content {
        width: 95%;
        padding: 15px;
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
    }

    .save-btn, .cancel-btn {
        width: 100%;
    }
}
*/

.logoff {
    margin-left: -20px;
}

code {
    font-family: Ubuntu Mono, monospace;
    color: #000;
}


p {
    line-height: 1.6;
}