.header {
    width: 100%;
    text-align: center;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    position: relative; /* Se mantiene en el flujo del documento */
}

body{
    background-color: rgb(252, 200, 208);
    margin: 0;               /* Remove default margin */
    display: flex;           /* Flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    text-align: center;      /* Center text within elements */
    font-family: 'Helvetica', sans-serif;
    color: #333; /* Color del texto */

}


h1 {
    
    font-size: 54px; /* Tamaño de la fuente */
    font-weight: bold; /* Negrita */
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    text-align: center; /* Centrar el texto */
    text-transform: uppercase; /* Convertir a mayúsculas */
    letter-spacing: 2px; /* Espaciado entre letras */
    padding: 20px; /* Espaciado inferior */
    padding-top: 0;
}


.addExpense{
    background-color: #fefefe;
    border-radius: 20px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 40px;
    padding-top: 10px;
    width: 800px;
    height: 637px;
    /* Center vertically */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically inside */
    text-align: center;
    margin: auto;

}

.titleAddExpense{
    font-size: 25px;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}


.bodyAddExpense{
    padding: 20px;
    size: 25px;
    color: #333;
    font-size: 20px;
    
}

.bodyCustomExpense{
    padding: 20px;
    size: 25px;
    color: #333;
    font-size: 20px;
    
}


.ExpenseName{
    border: none;
    outline: none;
    text-align: left;
    border-bottom: 1px solid #333; /* Adds a line at the bottom */
    width: 400px;
    padding: 5px;
    font-size: 20px;
    color: #333;
  }

.secondLineAE{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 20px;
    padding-bottom: 0;
    gap: 20px;
}

.secondLineCE{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.AmountInput{
    border: none;
    outline: none;
    text-align: left;
    border-bottom: 1px solid #333; /* Adds a line at the bottom */
    width: 150px;
    padding: 5px;
    font-size: 20px;
    color: #333;
}

.thirdLineAE{
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 20px;
    margin-top: 30px;
}

.thirdLineAE p{
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 30px;

}

button {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    padding: 10px 20px;
    border: none;
    border-radius: 30px; /* Round corners */
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;

  }
  
  button:hover {
    transform: scale(1.05); /* Slight scaling effect on hover */
    background-color: rgb(120, 79, 85);
    color: #fefefe;
  }
  
  button:focus {
    outline: none;
  }

  .fourthLineAE p{
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    padding: 20px;


}

.multiple{
    border: none;
    outline: none;
    text-align: left;
    border-bottom: 1px solid #333; /* Adds a line at the bottom */
    width: 150px;
    padding: 5px;
    font-size: 20px;
    color: #333;
}

.paidBy{
    margin-bottom: 10px;
}
.pick{
    padding-top: 0;
    margin-top: 0;
}



.Balance{
    background-color: #fefefe;
    border-radius: 20px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 40px;
    padding-top: 10px;
    width: 800px;
    height: 200px;

    margin: auto;
    margin-top: 30px;
}

.manageExpenses{
    text-align: left;
    justify-content: left;
    align-items: left;
}


.titleCurrentBalance{
    font-size: 25px;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);

}

.titleCustonExpense{
    font-size: 25px;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);

}

.data{
    text-align: center;
    justify-content: center;
    align-items: center;

}

table{
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: auto;
}

.output{
    font-size: larger;
    text-shadow: 5px 5px 10px rgb(193, 122, 132);
}

table{
    background-color: rgb(244, 222, 225);
    border-radius: 20px;
}

.preview{
    font-size: 20px;
    font-weight: bold;
}

.tableInput{
    border: none;
    outline: none;
    text-align: left;
    border-bottom: 1px solid #333;
    background-color: #fefefe;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.delete:hover{
    background-color: rgb(39, 20, 20);
}

.doneButton:active {
    background-color: #116e17; /* Darker shade when clicked */
    transform: scale(0.95); /* Slightly shrink the button when clicked */

}

.saveButton:active {
    background-color: #116e17; /* Darker shade when clicked */
    transform: scale(0.95); /* Slightly shrink the button when clicked */

}
.goBack{
    text-align: left;
    justify-content: left;
    align-items: left;
}