.download_promo{
    margin-right:32px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url("https://f.cl.ly/items/3Q031Q1m1s1d3C0I023k/geometry2.png");
}

button{
    border-radius:20px;
}

button:disabled {
  background-color: #ccc; /* Gray background to indicate it's disabled */
  color: #666; /* Change text color */
  cursor: not-allowed; /* Change cursor to indicate it's not clickable */
  opacity: 0.6; /* Reduce opacity to make it look inactive */
}

.chat-container {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    padding-top:15px;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

.chat-box {
    flex-grow: 1;
    min-height: 500px;
    overflow-y: auto;
    background-color: #e9e9e9;
    padding: 20px;
    height: 200px; /* Set the desired height */
    overflow: auto; /* Add overflow property to enable scrolling */
    border: 1px solid #ccc; /* Optional: Add border for better visualization */
}

.input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
}

.input-area textarea {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    height:100px;
}

#sendButton {
    width: 100px;
    margin-left: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
}

#uploadButton {
    width: 100px;
    margin-left: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
}


#uploadButton:disabled{
    background-color: darkgrey;
}



#sendButton:hover {
    background-color: #218838;
}

#sendButton:disabled{
    background-color: darkgrey;
}







:root {
	--infoBlue: #2E86DE;
	--infoBlueLight: #EFF6FC;
	--successGreen: #329F5D;
	--successGreenLight: #EFF7F2;
	--errorRed: #C2160A;
	--errorRedLight: #FAEDEC;
	--warningOrange: #FA7F05;
	--warningOrangeLight: #FFF5EB;
	--bodyTextColour: #212121;
}



/* Define styles using REM units */


.alert {
    display: grid;
    grid-gap: 1.25rem;
    grid-template-columns: max-content auto;
    border-radius: 4px;
	border-width: 4px;
	border-left-style: solid;
	transition: 0.12s ease;
	position: relative;
	overflow: hidden;
	&:before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: max-content;
		mix-blend-mode: soft-light;
		background: linear-gradient(90deg, rgba(255,255,255,0) 30%, rgba(255,255,255,1) 56%, rgba(2,0,36,0.1) 82%);
		z-index: 1;
	}
	.icon,.content {
		z-index: 2;
	}
	.icon {
		line-height: 1;

	}
	.title {
		font-weight: 700;
		margin-bottom: 0.75rem;
	}
	.content {
		max-width: 110ch;
		height:max-content;
	}
	&.alert--info {
		background-color: var(--infoBlueLight);
    	border-left-color: var(--infoBlue);
		.icon {
			color: var(--infoBlue);
		}
	}
}

@media (max-width: 767px) {
	.alert {
		grid-template-columns: auto;
		grid-gap: 0.75rem;
		.icon {
			font-size: 1.5rem;
		}
		.title {
			margin-bottom: 0.5rem;
		}
	}
}

.button:disabled {
            background-color: #aaa;
            cursor: not-allowed;
        }

.run-main{
    position: fixed;
    bottom: 10px;
    right: 10px;
}

.settings{
    position: fixed;
    bottom: 10px;
    left: 10px;
    cursor:pointer;
}

.nothingText{
     display: flex;
     align-items: center;
     justify-content: center;
}


.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 1; /* Ensure the overlay is on top */
}


.container-settings {
    width: 300px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    top:750px;
    left:165px;
}

        /* Style for labels */
.form-label {
    display: block;
    margin-bottom: 8px;
}

/* Style for inputs */
.form-input {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    box-sizing: border-box;
}

/* Style for dropdowns */
.form-dropdown {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    box-sizing: border-box;
}

/* Style for the button */
.submit-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #000000;
  width: 70px;
  height: 70px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  margin:auto;
  padding:10px;
  margin-top:160px;
}
.btn{
        border-radius:20px;
}

label{
    margin-top:10px;
}

select{
    margin-top:10px;
}

input{
    margin-top:10px;
}

#upload-btn-docx{
    margin-top:10px;
}

#upload-btn-co{
    margin-top:10px;
}

/*.sort{
    position: fixed;
    bottom: -18px;
    right: 0px;
    margin: 10px;
    padding: 10px;
    color: #fff;
}
#sortSelect{
    border-radius: 14px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}*/
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.progress-container {
  width: 100%;
  height: 8px;
  background: #ccc;
}

.progress-bar {
  height: 8px;
  background: #04AA6D;
  width: 0%;
}
