/* Reset some default browser styles */
body,
h1,
h2,
h3,
p,
ul,
li,
textarea {
    margin: 0;
    padding: 0;
}

#c_row{
    color: #963838;
    font-size: x-large;
    display: flex;
    position: relative;
    align-items: center;
    align-content: center;
    /* flex-direction: column; */
    overflow: auto;
    /* margin-left: 24%  */
}

/* Set background image for the body */
body {
    background-image: url('ai3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    padding: 0;
}

/* Add flex and align items for the header */
.header-flex {
    display: flex;
    align-items: center;
    background: #fff;
}

/* Add margin to header logo images */
.header-logo {
    margin: 5px;
}

/* Style for header title */
.header-title {
    font-size: xx-large;
    color: #963838;
    margin: 10px 0;
}

/* Media query for smaller resolutions */
@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        align-items: center;
    }
}


.container {
    width: auto;
    max-width: 60%;
    margin: 120px auto 50px;
    padding: 1%;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.01);
    border: 1px solid skyblue;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: auto;
}

.wrapper {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    border-radius: 5px;
    border: 1px solid #ccc;
    border: 1px solid rgb(255, 255, 255);
    margin-bottom: 0.5px;
}

.controls-column,
.text-column {
    flex: 1;
    margin: 0 10px;
    color: #963838;
}

.controls select:focus {
    background-color: white;
}

.controls {
    list-style: none;
    padding: 12px 0;
}

.controls li {
    display: flex;
    align-items: center;
}

.controls label {
    color: #963838;
    margin-left: 1%;
}

.controls select {
    border: none;
    font-size: 18px;
    background: none;
    padding: 2px;
    width: auto;
    margin: 3%;
}

.text-input .to-text {
    border-radius: 0px;
    border-left: 1px solid #ccc;
}

.text-input {
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.text-input textarea {
    height: 350px;
    width: 100%;
    border: none;
    outline: none;
    resize: true;
    background: #ffffff;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid skyblue;
}

.group button {
    width: 100%;
    padding: 10px;
    outline: none;
    border: none;
    color: #fff;
    cursor: pointer;
    /* margin-top: 20px; */
    font-size: 17px;
    border-radius: 5px;
    background: #2d45a5;
}

.group button:hover {
    background-color: #1d2f7b;
}



/* Footer Styles */
#footer {
    background-color: #ffff;
    padding: 1%;
    position: relative;
    width: 100%;
    left: 0;
    text-align: center;
    padding-bottom: 0.1%;
    margin-top: auto;
    bottom: 0;
    flex-grow: 0;
    z-index: 2;
    max-height: 20%;
    overflow: auto;
    flex-direction: column;
}


.footer-background {
    background-image: url('slider_5.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px;
    color: rgba(243, 249, 250, 0.979);
}



@media (max-width: 768px) {
    .wrapper {
        flex-direction: column;
    }
    .controls-column,
    .text-column {
        margin: 10px;
    }
}

.controls,
li,
.icons,
.icons i {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
