.active-setting {
    background-color: var(--content-hover) !important;
    position: relative;
}

.active-setting::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 45%;
    background-color: #c21c14;
    content: "";
}

.file-explorer-container {  
    height: 100%;
    width: 100%;
    background: var(--bg-color);
    color: var(--text-color);
    border: 1px solid #aaa7a7cc;
    box-shadow: 0 0 1px 1px gray;
    min-width: 905px;
    display: flex;
    flex-direction: column;
}

.file-explorer-title-bar {
    display: flex;
    justify-content: space-between;
    padding-left: .75rem;
    height: 3rem;
    background-color: var(--title-bar-color);
}

.settings-main {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    display: flex;
}

.nav-panel {
    min-height: 395px;
    min-width: 300px;
    max-width: 300px;
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: thin solid gray;
    padding: 1.25rem;

    position: sticky;
    top: 0;
    left: 0;
}

.gaming-item:last-child {
    margin-bottom: 4rem;
}

.nav-list {
    list-style-type: none;
    padding: 0;
    width: 100%;
    margin-bottom: auto;
}

.nav-list-item {
    margin: 0 auto 5px auto;
    padding: 10px 15px;
    gap: 10px;
    display: flex;
    align-items: center;
    font-size: .9em;
    background-color: transparent;
}

.nav-list-item:hover, .hover-effect:hover {
    background-color: var(--content-hover);
}

.nav-list-item img, .nav-list-item .nova {
    font-size: 22px;
    object-fit: contain;
}

.nav-list-item:focus {
    background-color: var(--content-focus);
}

.user-info {
    display: flex;
    text-align: left;
    align-items: center;
    color: var(--text-color);
    width: 100%;
    padding: .55rem 15px;
}

.user-info img {
    width: 3.25rem;
    height: 3.25rem;
    margin-right: 15px;
    border-radius: 40px;
}

.user-details h2 {
    font-size: .8rem;
}

.user-details span {
    font-size: .7rem;
}

.user-info:hover {
    background-color: var(--content-hover);
}

.input-wrapper {
    display: flex;
    align-items: end;
    border-radius: 5px;
    padding-left: 1rem;
}

.input-wrapper select:focus, .input-wrapper input:focus {
    border: none;
    outline: none;
}

.input-wrapper select:focus option {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.input-wrapper select,
.input-wrapper input {
    border: none;
    background: transparent;
    color: var(--text-color);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.search-bar {
    background-color: var(--title-bar-buttons);
    margin-block: 1.2rem;
    width: 100%;
    padding-block: .45rem;
    outline: 1px solid gray;
}

.search-bar input {
    border: none;
}

.search-bar::after {
    font-family: "Trickster";
    content: "\E614";
    left: 50%;
    transform: translateX(-50%);
}

.gaming-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gaming-container h2 {
    margin-bottom: .35rem;
}

.gaming-item {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    background: var(--settings-cards);
    gap: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.gaming-text {
    width: 100%;
    position: relative;
    padding-right: 30px;
}

.gaming-text h3 {
    margin-bottom: 5px;
}

.gaming-text p {
    color: var(--settings-subtext);
}

.container {
    width: 65%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-radius: 10px;
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
}

.device-info {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
}

.device-image-system {
    width: 125px;
    object-fit: cover;
    margin-right: 25px;
    border-radius: 5px;
}

.border {
    border: solid thick #000;
}

.device-details {
    display: flex;
    flex-direction: column;
    margin-left: 1.35rem;
}

.status-info, .status-info2 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

.status-info2 {
    justify-content: end;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 1rem;
    padding-right: 50px;
    width: max-content;
}

.settings-lang-title {
    font-size: 2.45rem;
    font-weight: 900;
}

.status-item .nova {
    font-size: 1.45rem;
}

.status-item div {
    display: flex;
    flex-direction: column;
}
 
.recommended-settings a:hover {
    text-decoration: underline;
}

.home-info span {
    font-size: .95rem;
    color: gray;
}

.home-info h3 {
    font-size: .9rem;
    margin-bottom: 5px;
}

.onedrive-button {
    padding: .5rem 1rem;
    margin: 1.5rem;
    cursor: pointer;
    border: thin solid gray;
    border-radius: 4px
}

.gaming-container .gaming-item .nova {
    font-size: 24px;
    padding: .5rem;
}

.settings-title-container {
    background-color: var(--bg-color);
    padding-bottom: 1.5rem;
    padding-top: .35rem;
    position: fixed;
    width: 70%;
    z-index: 1000;
}

.add-device {
    color: currentColor;
    padding: 8px .55rem;
    background-color: #c21c14;
    border-radius: 10px;
}

.help-icons {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.help-icons .nova {
    font-size: 1.5rem;
    margin-right: .5rem;
}

.device-image {
    font-size: 7rem; 
    /* margin-right: 25px; */
    border-radius: 5px;
}
.settings-network {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: .5rem;
    color: var(--settings-subtext);
}

.settings-network span {
    font-size: 1.25rem;
}

.status-item:hover, .gaming-item:hover {
    background-color: var(--settings-topmenu-hover);
}

.header-margin {
    margin-top: 4.25rem;
}

.gaming-item {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    background: var(--settings-cards);
    gap: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}


/* TOGGLE */

:root {
    --bg-switch-on: light-dark(#0067c0, #4cc2ff);
    --bg-switch-ball-on: light-dark(#fff, #000);
    --bg-switch-off: light-dark(#f5f5f5, #272727);
    --bg-switch-ball-off: light-dark(#5d5d5d, #cecece);
    --border-switch: light-dark(#898989,#9c9c9c);

    --settings-subtext: light-dark(gray, lightgray);
}

.switch {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 2.4em;
    height: 46%;
}
  
.switch .switching {
    opacity: 0;
    width: 0;
    height: 0;
}
  
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-switch-off);
    border: groove 1px var(--border-switch);
    /* ESTE ES EL FONDO OFF */
    border-radius: 34px;
    transition: background-color .5s, transform .5s;
}
  
.slider:before {
    position: absolute;
    content: "";
    height: 60%;
    width: 30%;
    bottom: 4px;
    background-color: var(--bg-switch-ball-off);
    /* ESTE ES LA PELOTA */
    border-radius: 50%;
    transform: translate(50%);
    transition: transform .4s;
}
  
.switching:checked + .slider {
    background-color: var(--bg-switch-on);
}
  
.switching:checked + .slider:before {
    transform: translateX(190%);
    background-color: var(--bg-switch-ball-on);
}
  
.switch-x-toggletext {
    position: absolute;
    top: 50%;
    right: calc(100% + 10px);
    transform: translateY(-50%);
    font-size: 12px;
    pointer-events: none;
}
  
.switch-x-toggletext span {
    display: none;
}
  
.switch .switching:checked + .slider + .switch-x-toggletext .switch-x-checked {
    display: inline-block;
}
  
.switch .switching:not(:checked) + .slider + .switch-x-toggletext .switch-x-unchecked {
    display: inline-block;
} 

.select-pause {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.wallpaper-container {
    padding: 1rem;
    margin-left: 10%;
}

.wallpapers {
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 120px));
    grid-gap: 10px;
    padding: 1rem;
}

.wallpaper-svg {
    position: relative;
}

.wallpaper-svg:before {
    content: url('../../wallpaper2.webp');
    display: block;
    position: absolute;
    right: 10px;
    bottom: 4px;
}

.wallpapers img {
    width: 100%;
    height: 100%;
    border: 1px solid #444;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.wallpapers img:hover {
    transform: scale(1.05);
}

/*  */


.custom-select {
    position: relative;
    display: inline-block;
}

.custom-select select {
    display: inline-block;
    padding: 10px 5rem 10px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: var(--setings-content-select);
    color: var(--setings-color);
    appearance: none;
}

.custom-select::after {
    content: '\E017';
    font-family: "Trickster";
    position: absolute;
    top: 50%;
    right: 10px;
    font-size: 12px;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    pointer-events: none;
    display: inline-flex;
}

.recommended-settings > .nova {
    margin: 1.25rem .5rem .5rem 1.25rem;
    font-size: 1.65rem;
}

.header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-settings {
    display: grid;
    gap: 0 20px;
    grid-template-columns: repeat(2, 1fr);
    height: 100%;
    align-items: baseline;
    padding-top: .25rem;
}

.recommended-settings {
    background-color: var(--settings-cards);
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.recommended-settings h3 {
    margin: 1.25rem .5rem .5rem 1.25rem;
}

.recommended-settings p {
    color: gray;
    font-size: 0.9em;
    margin: .8rem .5rem 1.25rem 1.25rem
}

.setting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-top: 1px solid #ddd;
}

.setting img {
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

.setting-info {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 1rem;
}

.setting-info h4 {
    font-weight: normal;
    margin-left: 1rem;
}

.setting-info .nova {
    font-size: 1.75rem;
}