*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
     font-family: Inter;
}

body{
    background: #fff;
}

a,button{
    cursor: pointer;
}

.container{
    max-width: 1270px;
    margin: auto;
}


.loginwrap{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.inner-wrap{
    width: 35%;
}
.loginwrap h1{
    text-align: center;
    margin-bottom: 20px;
   
}

.loginwrap input{
      width: 100%;
    padding: 12px 10px;
    margin-bottom: 20px;
    border-radius: 20px;
    border: 1px solid #b2bec3;
    font-size: 16px;
}

.loginwrap button{
    width: 100%;
     width: 100%;
    padding: 12px 10px;
    margin-bottom: 20px;
    border-radius: 20px;
    background-color: #636e72;
    border: none;
    color: #fff;
    font-size: 18px;
}

.website-header{
       display: flex;
    justify-content: space-between;
    padding: 20px 0px;
    background-color: #F6F6F6;
}

.website-header nav a{
    color: #000;
    text-decoration: none;
    font-weight: 600;
}
.website-header nav a:hover{
    color: #0984e3;
}

.website-header .crumbs a{
    text-decoration: none;
    color: #0984e3;
    font-weight: 600;
}


.website-list{
    background-color: #fff;
}

.website-list .first-bloc{
    padding: 20px 0px;
     margin-bottom: 30px;
}
.website-list .first-bloc .upload-form {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    justify-content: space-between;
}
.website-list .first-bloc .upload-form h2{
    font-size: 18px;
}
.website-list .first-bloc .upload-form button{
    border-radius: 25px;
    background: #2f3542;
    color: #fff;
    padding: 12px 12px;
    border: none;
    font-weight: bold;
}

.download-btn{
     border-radius: 25px;
    background: #2f3542;
    color: #fff;
    padding: 12px 20px;
    border: none;
    font-weight: bold;
    text-decoration: none;
    margin-top: 30px;
    display: inline-block;
}


.table-container{
     overflow-x: auto;
  width: 100%;
}
.table-container table{
     width: max-content;
  border-collapse: collapse;
}


td.actions {
    display: flex;
    gap: 5px;
    align-items: center;
}

td.actions button{
    background: transparent;
    border: none;
}
td.actions button img{
    width: 30px;
    height: auto;
}


.addnew-siteform form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.addnew-siteform form p{
    width: 32%;
}
.addnew-siteform form p.comment{
    width: 100%;
}
.addnew-siteform form p.comment textarea{
      width: 100%;
    padding: 10px 10px;
    outline: none;
    border-radius: 15px;
    border: 1px solid #2d3436;
    margin-top: 10px;
    height: 120px;
}
.addnew-siteform form p input{
    width: 100%;
    padding: 10px 10px;
    outline: none;
    border-radius: 15px;
    border: 1px solid #2d3436;
    margin-top: 10px;
}
.addnew-siteform form p label{
    color: #000;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.addnew-siteform {
    margin-top: 40px;
}
.addnew-siteform h2{
    margin-bottom: 40px;
}

.submitting-newsite{
    display: flex;
    gap: 20px;
    align-items: center;
}
.submitting-newsite button{
    border-radius: 25px;
    background: #E2E2E2;
    color: #000;
    border: none;
    padding: 15px 35px;
    font-weight: bold;
    font-size: 16px;
}
.submitting-newsite a{
    text-decoration: none;
    color: #000;
}
.submitting-newsite a:hover{
    color: #0984e3;
}

.search-form {
       display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
}
.search-form form{
    display: flex;
    gap: 5px;
     align-items: center;
}
.search-form form input{
    padding: 10px;
    outline: none;
    border: 1px solid grey;
    border-radius: 12px;
}

.upload-form .first-block{
   width: 35%; 
}

th .sort {
  font-size: 12px;
  text-decoration: none;
  margin-left: 6px;
  display: inline-block;
  transition: transform .15s, opacity .15s;
  opacity: .7;
}
th .sort.active { opacity: 1; font-weight: 700; }
th .sort.flip { transform: rotate(180deg); } /* DESC flips the same icon */



.signup-col,
td.signup-col {
  width: 200px;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.direct-filter ul {
    list-style: none;
    padding-left: 0px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.direct-filter ul li a{
        border-radius: 25px;
    background: #2f3542;
    color: #fff;
    padding: 12px 12px;
    border: none;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}