/* styles.css */
body {
  font-family: Arial, sans-serif;
  background: #f0f0f0;
  padding: 30px;
}

.container {
  /* width: 500px; */
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container h1,h2{
  color: #00BCD4;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}

table th,
table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  color: #00BCD4;
}

input[type="number"] {
    width: 80%;
    padding: 7px 5px;
    border-radius: 3px;
    border: 1px solid #b2ebf2;
    color: #00BCD4;
}
input:focus {
    outline: none;
    border-color: #00BCD4;
}
.kib_col_delete_btn {
    padding: 1px 10px;
    border-radius: 5px;
    border: 0px;
    color: #ffffff;
    background-color: #F06292;
}

#addRowBtn,
#calculateBtn {
  padding: 10px 15px;
  margin-right: 10px;
  cursor: pointer;
  border: none;
  background: #00BCD4;
  color: #fff;
  border-radius: 5px;
}


.data_input_field {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
}

#addRowBtn:hover,
#calculateBtn:hover {
  background: #0056b3;
}

.result_box_area {
    border: 1px solid #b7daff;
    border-radius: 5px;
    text-align: center;
    text-transform: capitalize;
    margin-top: 25px;
    font-size: 25px;
    font-weight: normal;
    padding: 25px;
    color: #00BCD4;
}

#resultValue.green {
  color: #22ff02;
  font-weight: bold;
}

#resultValue.red {
  color: red;
  font-weight: bold;
}

/* Add Row btn area box */
.add_row_col_btn_area {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 25px;
    gap: 3px;
}
.all_btn_box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.switch_btn_box {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    font-size: 10px;
    color: #00BCD4;
}

.add_row_col_btn_area>button{
    background-color: #00BCD4;
    border-radius: 5px;
    padding: 7px 11px;
    border: none;
    color: #ffffff;
}

/* iOS style toggle */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  display: none;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #00BCD4;
}
input:checked + .slider:before {
  transform: translateX(26px);
}


