

body {
    background-color: #F4F1E8;
    font-family: system-ui, sans-serif, "Nunito", "Helvetica", Arial, sans-serif; 
    color: #242424;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom:30px;
}

button {
    background: #FAF9F4;
    color: #242424;
    border: 1px solid #2B2B2B;
    box-shadow: 2px 2px 0 #BFC7C3;
    border-radius: 10px;
    text-align: center;
    padding: 8px 14px;
    cursor: pointer;
}

button:hover {
    background: #EEF4F5;
}


h1, .logo {
    font-family: "Pixelify Sans", sans-serif;
    font-weight: 700;
}

.logo{
    font-size: 50px;
    padding-bottom:5px;
}

.top {
    display: flex;
    justify-content:space-between;
    align-items:center;
    margin-top:-20px;
}


.main {
    display:flex;
    justify-content: space-between;
}

.summary {
    display:flex;
    justify-content: flex-end;
    gap:30px;
    width:100%;
}

.summary-widget{
    background: #EEF4F5;
    border: 1px solid #2b2b2b;
    border-radius: 18px;
    width:120px;
    display:flex;
    justify-content: center;
    box-shadow: 3px 3px 0 #2B2B2B;
}

.apisection{
    display:flex;
    flex-direction:column;
    gap:20px;
    width:575px;
}

.apiscard{
    background-color:#EEF4F5;
    border: 1px solid #2B2B2B;
    border-radius: 18px;
    padding-left:20px;
    padding-right:20px;
    padding-bottom:15px;
}

.apiscardtop{
    display:flex;
    justify-content: space-between;
    align-items:center;
}

.api{
    border-radius: 18px;
    padding-left:15px;
    padding-right:15px;
    padding-bottom:15px;
    background: #D7E6EE;
}

.apitop{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.apibottom{
    display:flex;
    gap: 100px;
    align-items:center;
}

.changesection{
    display:flex;
    flex-direction:column;
    gap:20px;
    width:575px;
}

.changescard{
    background-color:#EEF4F5;
    border: 1px solid #2B2B2B;
    border-radius: 18px;
    padding-left:20px;
    padding-right:20px;
    padding-bottom:20px;
    padding-top:5px;
}

.changescardtop{
    display:flex;
    justify-content: space-between;
    align-items:center;
}

.changes{
    border-radius: 18px;
    padding-left:15px;
    padding-right:15px;
    padding-bottom:15px;
}

.changetop{
    display:flex;
    gap:30px;
    align-items:center;
    margin-left:10px;
}

.addapiform{
    background-color:#EEF4F5;
    border: 1px solid #2B2B2B;
    border-radius: 18px;
    padding-left:20px;
    padding-right:20px;
    padding-bottom:20px;
}

.addapiformtop{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.addapiformmiddle{
    display:flex;
    gap:10px;
}

.labelandinput{
    display:flex;
    flex-direction:column;
    gap:5px;
}

input {
    padding:5px;
    border: 0.5px solid #2B2B2B;
    outline: none;         
    box-sizing: border-box; 
    border-radius:5px;
    background-color:#F6F4EC;
}

label {
    font-size:12px;
}

.notclicked{
    background: transparent;
    color: #242424;
    border: 1px solid transparent;
    box-shadow: None;
}

.notclicked:hover {
    background: #EEF4F5;
    border-color: #A9BEC9;
}

.notclicked.active {
    background: #C6DCE8;
    border: 1px solid #2B2B2B;
    box-shadow: 2px 2px 0 #2B2B2B;
}

.signindiv {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    margin-right:200px;
    margin-left:200px;
    margin-top:50px;
    
}

.widgetNumber {
    font-weight:700;
    font-size:30px;
}

.addapibutton {
    background: #69C58F;
    color: #0C1117;
    border: 1px solid #2b2b2b;
    border-radius: 7px;
    box-shadow: 3px 3px 0 #2B2B2B;
    float:right;
    margin-top:15px;
}

.addapibutton:hover{
    background: #7ED6A2;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #17211B;
}

.addapibutton:active {
    transform: translate(3px, 3px);
    box-shadow: 1px 1px 0 #17211B;
}


.changecard {
    background-color:#EEF4F5;
    border: 1px solid #2B2B2B;
    border-radius: 18px;
    padding-left:15px;
    padding-right:15px;
    padding-bottom:15px;
}


.scrolldiv{
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y:scroll; 
    overflow-x:hidden;
}

.scrolldiv::-webkit-scrollbar {
  display: none;
}

select {
    padding:5px;
    border: 0.5px solid #2B2B2B;
    outline: none;         
    box-sizing: border-box; 
    border-radius:5px;
    background-color:#F6F4EC;
}


img{
    padding:5px;
}


footer {
    background-color:#EEF4F5;
    position: fixed;
    left: 0;
    bottom:0;
    width:100%;
    padding-left:15px;
    padding-right:15px;
    border :0.5px solid #2B2B2B;
    display:flex;
    gap:175px;
    align-items:center;
}

.homepagecard {
    background-color:#EEF4F5;
    width:600px;
    border-radius: 18px;
    padding-left:15px;
    padding-right:15px;
    padding-bottom:15px;
    box-shadow: 3px 3px 0 rgba(0,0,0,.12);
}


   