*{
   border: 0;
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
body{
    width: 100vw;
    height: 100vh;
    background-color: #323233;
}
:root {
    --cor-principal: #131f2b;
    --cor-secundaria: #02a9fb;
    --cor-back: #121617;
    --cor-input: #fff;
  }
#selectMes{
    background-color: var(--cor-principal);
    color: var(--cor-input);
    border: solid 2px var(--cor-secundaria);
    border-radius: 10px;
    padding: 3px;
}
.mainContainer{
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 526px;
    height: 573px;
    background-color: var(--cor-back);
    border-radius: 30px;
    flex-wrap: wrap;
}
.navegation{
    display: flex;
    flex-direction: column;
    background-color: var(--cor-principal);
    border-radius: 30px 30px 0 0;
    height: 89px;
    padding: 18px 22px;
    gap: 6px;
}
.defaultText{
    display: flex;
    justify-content: space-between;
}
.container {
    max-width: 482px;
    height: 380px;
    background-color: var(--cor-principal);
    margin: 22px;
    padding: 14px;
    border-radius: 30px;
}
.contentInput{
    display: flex;
    align-items: center;
    gap: 18px;
}
.titleTransacoes{
    display: flex;
    padding: 16px 0;
    justify-content: center;
}
.transacoesAdicionadas{
    display: flex;
    flex-direction: column;
    height: 270px;
    overflow-y: auto;
    gap: 5px;
}
#title{
    text-transform: capitalize;
}
.transacoesAdicionadas::-webkit-scrollbar {
    width: 10px;
    background-color: var(--cor-principal);
  }
  
.transacoesAdicionadas::-webkit-scrollbar-thumb {
    background-color: var(--cor-secundaria);
    border-radius: 10px;
  }
.card{
    display: flex;
    justify-content: space-between;
    padding: 0 16px 0 16px;
    background-color: var(--cor-back);
    height: 36px;
    border-radius: 5px;
    align-items: center;
}
.cardContent{
    display: flex;
    gap: 11px;
}
#nameInput{
    width: 60%;
    height: 27px;
    background-color: var(--cor-principal);
    border: solid 2px var(--cor-secundaria);
    border-radius: 100px;
    padding-left: 14px;
    color: var(--cor-input);
}
#numberInput{
    width: 60%;
    height: 27px;
    background-color: var(--cor-principal);
    border: solid 2px var(--cor-secundaria);
    border-radius: 100px;
    padding-left: 14px;
    color: var(--cor-input);
}
#addButton{
    all: unset;
    cursor: pointer;
}
#editButton{
    all: unset;
    cursor: pointer;
}
#addButton:hover{
    transform: scale(1.1);
    transition: all, 0.2s;
}
#toggleThemeButton{
    all: unset;
    cursor: pointer;
}
#toggleThemeButton:hover{
    transform: scale(1.1);
    transition: all, 0.2s;
}
#deleteButton{
    all: unset;
    cursor: pointer;
}
.edit, .trash {
    height: 18px;
    width: auto;
}
.trash{
    width: 13px;
    height: 18px;
}
footer{
    display: flex;
    align-items: center;
    max-width: 526px;
    height: 60px;
    gap: 57px;
    background-color: var(--cor-principal);
    border-radius: 0 0 30px 30px;
    padding: 8px 58px;
    justify-content: space-between;
}
.receitas{
    display: flex;
    gap: 6px;
}
.despesas{
    display: flex;
    gap: 6px;
}
.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
  }
  
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #323233;
    transition: 0.4s;
    border-radius: 34px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:checked + .slider:before {
    transform: translateX(14px);
  }
@media (max-width:500px){
    .mainContainer{
       width: 90%;
       height: auto;
       max-width: none;
       border-radius: 10px;
    }
    .navegation{
        width: 100%;
        height: 60px;
        padding: 10px;
        border-radius: 10px 10px 0 0;
    }
    .container {
        width: 94%;
        height: auto;
        margin: 3%;
        padding: 10px;
    }
    .contentInput{
        display: flex;
        flex-wrap: wrap;
    }
    #addButton > img{
        height: 135%;
        width: 135%;
    }
    footer{
        height: 40px;
        width: 100%;
        padding: 5px;
        border-radius: 0 0 10px 10px;
        justify-content: space-around;
        gap: 0px;
    }
 }
 