/*
* Style File for admin area
*/

#eacs-settings-wrap h2{
    margin: 0;
    padding: 0;
}

.eacs_setting-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    background-color: #fff;
    margin: 2rem 0;
    border-radius: 5px;
}

.eacs_inner-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin: 2vh 0;
}

.eacs_setting-container .eacs_heading {
    font-size: 1.25rem;
    margin: 0;
    border-bottom: 1px solid #adb5bd;
    width: 98%;
    background-color: #fff;
    line-height: 1.2;
    font-weight: 500;
    padding: 1%;
    background-color: #2271b1;
    color: white;
}

.eacs_col-1 {
    width: 30%;
    margin-left: 1.5vw;
    font-weight: 700;
    line-height: 2;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.eacs_col-2 {
    width: 70%;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.eacs_col-2 input:not([type=radio]):not([type=checkbox]):not(.eacs_color):not(.eacs_color-input),
.eacs_col-2 select {
    width: 400px;
    max-width: 100%;
}

.eacs_col-2 .eacs_color {
    width: 40px;
}

.eacs_col-2 .eacs_color-input {
    width: 150px;
}

.eacs_banner {
    background: #f2fafc;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.eacs_banner_heading {
    font-size: 20px;
}

.eacs_btn {
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 14px;
    border-color: #2271b1;
    border-radius: 5px;
}

.eacs_btn:hover {
    background: #2271b1;
    color: #fff;
}

.eacs_btn:focus,
.eacs_btn:active {
    background: #2271b1;
    color: #fff;
    outline: none;
}