body {
    font-family: Arial, sans-serif;
    margin: 20px;
}
.alert-success {
    margin-top: 1em;
}

.alert-danger {
    margin-top: 1em;
}
.content-container {
    margin-top: 50px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
}
.background-container {
    background-image: url('../static/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    overflow-y: auto; /* Add this line */
    
}

#logo {
	display: block;
	width:100%; 
	min-width:100%;
	margin: 0 auto;

}
.text-field-container {
    position: relative;
}
.line-numbers {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 20px;
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
    padding: 0.5rem 0;
    text-align: center;
    overflow: hidden;
}
.line-numbers div {
    line-height: 1.5;
    color: #6c757d;
}
.text-field {
    padding-left: 30px;
}

.spinner-hidden {
    display: none !important;
}

.spinner-visible {
    display: block !important;
}

#loadingSpinner {
    z-index: 9999;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#messagesContainer .alert {
    margin-bottom: 15px; /* Adds space between messages if there are multiple */
}


#messagesContainer {
    width: 100%; /* Ensures it occupies the full container width */
    margin-top: 20px; /* Adds some space above the container */
    padding: 10px; /* Adds some padding inside the container */
    box-sizing: border-box; /* Ensures padding does not add to the total width */
}
