body {
    background: white;
    font-family: var(--regular-font);
    width: 100%;
    height: 100vh;
}
.wrapperDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 100px;
}
.wrapperDiv .menusDiv {
    width: 30%;
    height: 100%;
    padding: 50px 10px;
}
.wrapperDiv .menuContentDiv {
    width: 70%;
    height: 100%;
    padding: 50px 10px;
}
.logoNavigateDiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 30px 10px 15px;
    margin-bottom: 3rem;
}
.logoNavigateDiv .backBtn {
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid gainsboro;
    box-shadow: 3px 2px 5px 0px gainsboro;
    color: rgb(162, 162, 162);
}
.logoNavigateDiv .backBtn:hover {
    border: 1px solid none;
    box-shadow: 3px 2px 5px 0px gray;
    color: black;
}
.logoNavigateDiv .logoImg {
    width: 70px;
}
.logoNavigateDiv .logoImg img {
    width: 100%;
}

.menusDiv .each_menu {
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    color: rgb(159, 158, 158);
    font-size: 1.5rem;
    padding: 10px 20px;
}
.menusDiv .each_menu:hover {
    color: black;
}
.menusDiv .each_menu.show {
    color: rgb(76, 121, 206);
    font-weight: 600;
}
.menusDiv .each_menu i {
    width: 40px;
    margin-right: 0.5rem;

}
.menuContentDiv .each_content {
    width: 100%;
    height: 100%;
    display: none;
    overflow-y: auto;
}
.menuContentDiv .each_content.show {
    display: block;
}
.each_content .positionDiv {
    margin: 100px 20px;
}

.btn {
  border-width: 2px;
  font-size: 0.9rem;
  font-weight: 600;
}
.btn-primary {
  background: rgb(226, 239, 249);
  color: rgb(110, 161, 200);
  border: 2px solid rgb(110, 161, 200);
}
.btn-secondary {
  background: rgb(209, 209, 209);
  color: rgb(97, 106, 112);
  border: 2px solid rgb(97, 106, 112);
}
.btn-success {
  background: rgb(226, 250, 237);
  color: mediumseagreen;
  border: 2px solid mediumseagreen;
}
.btn.btn-icon {
  border-width: 2px;
  font-size: 1.3rem;
  border-radius: 50px;
  padding: 0rem 0.6rem;
}
.btn-danger {
  background: rgb(250, 234, 228);
  color: orangered;
  border: 2px solid orangered;
  font-size: 1.1rem;
}
.input-group-prepend { 
    width: 100%;
}
.input-group-text {
    background-color: transparent;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: rgb(80, 80, 80);
    padding: 0;
    padding-bottom: 0.25rem;
}
.form-control {
  font-size: 1.1rem;
  border-radius: 0;
  background: transparent;
  color: rgb(81, 81, 81);
  border-color: #a9a8a8;
}
.form-control:focus {
  box-shadow: none;
  outline: none;
  border-color: #474747;
  background: transparent;
  color: rgb(109, 109, 109);
}
.error {
  color: red;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
.form-check-label {
  display: inline-flex;
  align-items:center;
  width: fit-content;
  margin-right: 1rem;
  color: rgb(109, 109, 109);
}
.language-control {
  border-color: transparent;
  height: auto;
}
.language-control .form-check-label {
  width: 45%;
  margin-bottom: 0.75rem;
  font-size: 1.3rem; 
}
.viewer-control {
  border-color: transparent;
  height: auto;
}
.viewer-control .form-check-label {
  width: 100%;
  margin-bottom: 0.75rem;
  font-size: 1.5rem; 
}
.form-check-input {
  position: relative;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0.25rem;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
    height: calc(2.25rem + 2px);
    border: 1px solid #8d8d8d;
    border-radius: .25rem;
    font-size: 0.9rem;
    padding: .375rem .75rem;
    display: flex;
    align-items: center;
}

/* Multiple select height auto */
.select2-container .select2-selection--multiple {
    min-height: calc(2.25rem + 2px);
    padding: .25rem .5rem;
}

/* Remove default focus blue outline */
.select2-container--default.select2-container--focus
.select2-selection--single,
.select2-container--default.select2-container--focus
.select2-selection--multiple {
    border-color: #8d8d8d !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Match input-group prepend styling */
.input-group .select2-container {
    flex: 1 1 auto;
    width: 1% !important;
}

/* Fix left border radius when used with input-group-prepend */
.input-group .select2-selection {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.choose_file_btn {
    cursor:pointer;
    color: rgb(163, 190, 249);
}
.choose_file_btn:hover {
    color: rgb(97, 137, 218);
}
.files_container {
    margin-top: 1rem;
}
.files_container .file_item {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem;
    margin: 0.5rem;
    color: cornflowerblue;
    font-size: 0.9rem;
    background: #f2f2f2;
    border: 1px solid gainsboro;
    width: fit-content;
}
.files_container .file_item .fa-paperclip {
    margin-right: 5px;
    color: gray;
    font-size: 1.1rem;
}
.files_container .file_item .fa-times {
    cursor: pointer;
    color: red;
    font-size: 1.1rem;
}
input[readonly],
textarea[readonly] {
    background-color: #fff !important;
    color: #000;
}

.subscriptionList {
    width: 100%;
}

.subscriptionRow {
    display: grid;
    grid-template-columns: 
        1.5fr 1fr 1fr 1fr 1fr 2fr 2fr 1fr 1fr;
    gap: 10px;
    padding: 14px;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.subscriptionHeader {
    font-weight: 600;
    background: #f9fafb;
    color: rgb(103, 102, 102);
    font-size: 0.9rem;
}

.subName {
    font-weight: 600;
}

.subPrice {
    font-weight: 700;
}

.deviceList span,
.resolutionList span {
    display: inline-block;
    background: #eef2ff;
    color: #3730a3;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin: 2px 2px 0 0;
}

.badge.yes {
    background: #dcfce7;
    color: #166534;
    padding: 4px 8px;
    border-radius: 10px;
}

.badge.no {
    background: #fee2e2;
    color: #991b1b;
}