
*{
    margin: 0;
    padding: 0;
}
body{
    background-color:#F9FAFB;
    color: #1F2937;
    font-family: system-ui;
    font-size: 12px;
}
.project{
    width: 80%;
    margin:20px auto;
}
.head{
    text-align: center;
    padding: 10px 0px;
    text-transform: uppercase;
    font-weight: bold;
    color: #1E40AF;
    font-size: 18px;
}
input{
    width: 100%;
    height: 28px;
    border: 1px solid #CBD5E1;
    outline: none;
    background-color: #F1F5F9;
    margin: 4px 0;
    padding: 5px 7px;
    border-radius: 4px;
    color: #374151;
    font-size: 12px;
    transition: background-color 0.3s, transform 0.2s;
}
input:focus{
    background-color: #E0E7FF;
    transform: scale(1.05);
    border-color: #3B82F6;
}
.price input{
   width: 20%;
}
#total{
    background-color: #3B82F6;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    margin-left: 6px;
    user-select: none;
    font-size: 13px;
}
#total::before{
    content: "TOTAL : ";
}
button{
    width: 100%;
    height: 28px;
    background-color: #3B82F6;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    transition: background-color 0.3s, letter-spacing 0.3s;
}
button:hover{
    background-color: #60A5FA;
    letter-spacing: 1px;
}

.btnsearch{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.btnsearch button{
width: 40%;
}

#deleteALL{

    margin: 10px 0;
}
table{
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    margin: 15px 0px;
}
table th, table td {
    padding: 6px 8px;
    border: 1px solid #CBD5E1;
    text-align: center;
    font-size: 12px;
    color: #334155;
  }
  table th {
    text-transform: uppercase;
    background-color: #E0E7FF;
    font-weight: 600;
  }
  #count {
    width: 60px;
  }

  @media (max-width: 600px) {
    .project {
      width: 95%;
      margin: 10px auto;
    }
    .price input {
      width: 100% !important;
      margin-bottom: 8px;
    }
    .btnsearch {
      display: block !important;
    }
    .btnsearch button {
      width: 100% !important;
      margin-bottom: 10px;
    }
    .inputs input,
    .inputs button {
      width: 100% !important;
    }
    table {
      font-size: 10px;
    }
    table th, table td {
      padding: 4px 6px;
    }

    body, html {
      overflow-x: hidden;
      overflow-y: auto;
    }
  }
  