body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    overflow: hidden;
}
.top-bar {       
    width: 100%;
    z-index: 0;
    position: fixed;
    display: flex;
    border: solid;
    border-color: black;
    /*top: 0;
    left: 25;*/
    /*background-color: #333;*/
    /*padding: 0px 0px;*/
    /*justify-content: space-between;
    align-items: center; */
}
#header {
    background: none; 
    border: none; 
    height: auto;
}
#buttons {
    display: flex;
    gap: 6px;
    margin-left: auto;
}
.editor-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}
#input-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0px;        
    height: 100vh;   
    /*min-width: 300px;*/
    /*margin-top: 34px;*/
}
#monaco-editor {
    flex: 1;
    border: none;
}
#divider {
    width: 5px;
    background-color: #ccc;
    cursor: ew-resize;
}
#output-container {
    flex: 1;
    position: relative;
    margin-top: 1px;
    padding: 1px;
    height: 100vh;     
    margin-top: 30px;
}
iframe {
    width: 100%;
    height: 100%;
    border: none;
}
button {
    padding: 5px 10px;
    background-color: #333;
    color: white;
    cursor: pointer;
    border: solid;
    border-left-color: gray;
    border-right-color: gray;
    /*border: none;
    border-radius: 5px;*/
}
button:hover {
    background-color: #555;
}
#alert-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
.alert-message {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slide-down 10s ease-in-out forwards;
}
@keyframes slide-down {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        transform: translateY(0);
        opacity: 1;
    }
    90% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}