@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@500&display=swap');

body {
    display: block;
    background-color: #f3f8ff;
    color: #000;
    font-family: 'Ubuntu', sans-serif;
    border: 3px solid rgb(255, 255, 255);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 100vh;
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 79, 124, 0.1);
    margin: 0;
    border: 2px solid rgb(223, 238, 255);
}

.fnavbar {
    min-height: 100vh;
    display: flex;
}

.center {
    align-items: center;
    justify-content: center;
    display: flex;
}

.sidebar {
    width: 10%;
    justify-content: center;
    display: flex;
    height: calc(100vh - 60px); /* Assuming .navbar height is 60px */
    background-color: rgb(223, 238, 255);
    border-radius: 5px;
    border: 5px solid rgb(223, 238, 255);
    border-right: 5px solid rgb(255, 255, 255);
    color: rgb(223, 238, 255);
    padding: 10px;
}

.align {
  width: 40%;
  min-height: calc(100vh - 0px);
  align-items: left;
  background-color: rgb(223, 238, 255);
  border: 10px solid rgb(223, 238, 255);
  border-radius: 5px;
}

@media (max-width: 768px) {
  .align {
    width: 100vw !important;
    max-width: 100vw !important;
    display: block !important;
  }

  .sidebar {
    display: none !important;
  }
}


.logo {
    width: 40px;
    height: 40px;
    background-color: rgb(0, 0, 0);
    mask-image: url('https://mathpal.xyz/assets/logo.svg');
    -webkit-mask-image: url('https://mathpal.xyz/assets/logo.svg');
    mask-size: cover;
}

input, textarea, select {
    margin-top: 10px;
    background-color: #f3f8ff;
    color: #000;
    font-family: 'Ubuntu', sans-serif;
}

select {
    padding: 5px 30px 5px 5px; /* Add padding to the right */
    border: 1px solid #ccc;
    border-radius: 4px;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="5" viewBox="0 0 4 5"><path fill="%23000" d="M2 0L0 2h4L2 0zM2 5L0 3h4L2 5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 8px 10px;
}

input:hover {
    background-color: #002757;
    color: #ffffff;
}


.button {
    margin-top: 10px;
    background-color: #f3f8ff;
    color: #000;
    font-family: 'Ubuntu', sans-serif;
}


.button:hover {
    background-color: #002757;
    color: #696969;
}


.lbutton {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #001d3b;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(45, 109, 134, 0.397);
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 1px solid rgb(255, 255, 255);
}

.lbutton:hover {
    background-color: #00070f;
}

.lbutton:active {
    background-color: #003f7f;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(2px);
}

.headerl {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.headeri {
    display: inline;
}

.calclist {
    list-style-type: none;
}

