body {
padding: 10px;
}

table {

    font-size: 30px;
    display: flex;
    justify-content: space-between;
}

#city,
#region,
#organisation,
#hostname {
    padding-left: 12rem;
}

#above-map {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

#below-map {
    margin-top: 2rem;
    font-size: 30px;
}

#btn {
    margin-top: 2rem;
    margin-bottom: 2rem;
    background: #000;
    color: white;
    width: 15rem;
    height: 3rem;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;

}

#btn:hover {
    background: #000;
    color: #999;
}

#card {
    border: 1px solid black;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 10px;
    font-size: 20px;
    font-size: 1.1rem;
   
}

#post-office-list {
    display: grid;
    margin-top: 20px;
    grid-template-columns: auto 50%;
    gap: 30px;
    color: rgb(0, 0, 0);
    font-size: 20px;
}

#search-box input {
    border: 1px solid black;
    border-radius: 0.5rem;
    height: 2rem;
    width: 96%;
    display: flex;
    justify-content:space-between;
    flex-wrap: wrap;
}
#search-box {
    display: none;
}
#search-input::placeholder {
    width: max-content;
    margin: 20px;
    padding-left: 20px;
    background-image: url('search-icon.svg');
    background-repeat: no-repeat;
    text-indent: 10px; /* Add left margin to the placeholder text */
}

#search-input {
    padding: 10px 40px 10px 20px;
    
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 18px;
    outline: none;
}

#search-input::placeholder {
    color: #999;
    opacity: 1;
    
}

.loader {
    display: none;
    /* Add these properties to center the loader */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid #f3f3f3;
    /* Light gray border */
    /* border-top: 4px solid #db3453;
    border-bottom: 4px solid #3fdb34; */
    border-left: 4px solid #34b4db;
    border-right: 4px solid #34b4db;

    /* Blue border on top */
    border-radius: 50%;
    /* Make it a circle */
    width: 30px;
    /* Set the width and height */
    height: 30px;
    animation: spin 1s linear infinite;
    /* Add animation */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.searchbar>span {
    position: absolute;
    top: 8px;
    left: 8px;

}
