body {
    margin: 0px;
    padding: 0px;
    background-color: #25262A;
}

.searchpage {
    background-image: url("./img/background.png");
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box {
    padding-top: 60vh;
    box-sizing: border-box;
    width: fit-content;
    height: fit-content;
    position: relative;
    font-family: "Nunito", sans-serif;
}

.input-search {
    box-sizing: border-box;
    height: 80px;
    width: 128px;
    border-style: none;
    padding: 0px;
    font-size: 30px;
    letter-spacing: 2px;
    outline: none;
    border-radius: 25px;
    transition: all 0.5s ease-in-out;
    background-color: transparent;
    padding-right: 128px;
    color: #fff;
    text-align: center;
}

.input-search::placeholder {
    color: rgba(255, 255, 255, 0.732);
    font-size: 1.5rem;
    padding-bottom: 10px;
    letter-spacing: 2px;
    font-weight: 100;
    text-align: center;
}

.btn-search {
    box-sizing: border-box;
    /* width: 128px;
    height: 128px; */
    border-style: none;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    right: 1vw;
    bottom: 0vh;
    color: #ffffff;
    background-color: transparent;
    pointer-events: painted;
}

.btn-search:focus~.input-search {
    width: 30vw;
    border-radius: 1rem;
    background-color: transparent;
    padding-bottom: 0px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
    transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
}

.input-search:focus {
    width: 32vw;
    border-radius: 1rem;
    padding-bottom: 0px;
    background-color: transparent;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
}

.body {
    height: 100vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.url,
hr {
    text-align: center;
}

.url hr {
    margin-left: 20%;
    width: 60%;
}

.url a {
    color: #818181;
    display: block;
    font-size: 20px;
    margin: 10px 0;
    padding: 6px 8px;
    text-decoration: none;
}

.url a:hover,
.url .active {
    background-color: #e8f5ff;
    border-radius: 28px;
    color: #000;
    margin-left: 14%;
    width: 65%;
}

.url>p {
    display: block;
    padding: 6px 8px;
    font-size: 20px;
    background-color: #e8f5ff;
    border-radius: 28px;
    color: #000;
    margin-left: 14%;
    width: 65%;
}

.main {
    margin-left: 20%;
    font-size: 28px;
    padding: 0 10px;
    width: 58%;
}

.main h2 {
    padding-top: 30px;
    color: white;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.main .card {
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 1px 1px 8px 0 grey;
    margin-bottom: 20px;
    padding: 20px 0 20px 50px;
}

.main .card table {
    border: none;
    font-size: 16px;
    height: 270px;
    width: 80%;
}

.list {
    height: 150px;
    overflow: scroll;
}

.error {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.error>div {
    color: white;
    padding: 50px;
    width: 300px;
}

a {
    text-decoration: none;
    color: #6372c7;
}

a:hover {
    color: #494e67;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #F16B50;
    border-radius: 10px;
}