.card {
    margin: 1rem 0;
    padding: 1rem;
    border: 0.1rem solid #cccccc;
    border-radius: 0.5rem;
}

.card > h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.map {
    width: 100%;
    height: 400px;
    border: 0.1rem solid #cccccc;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.relayList {
    width: 100%;
    height: 400px;
    overflow: auto;
    border: 0.1rem solid #cccccc;
    border-radius: 0.5rem;
    padding: 1rem;
}

input[type="text"] {
    width: 100%;
    height: 3.5rem;
    font-family: Pangram, sans-serif;
    font-size: 1.4rem;
    border-radius: 0.4rem;
    box-shadow: none;
    margin-bottom: 0;
    background-color: #ffffff;
    border: 0.1rem solid #cccccc;
}

#searchButton, .selectButton {
    width: 100%;
    height: 3.5rem;
    display: inline-block;
    font-family: Pangram, sans-serif;
    border: 0.1rem solid #f37023 !important;
    border-radius: 0.5rem;
    background: #ffffff;
    color: #f37023;
    cursor: pointer;
    text-transform: none;
    text-decoration: none;
    transition: 0.3s all;
}

#searchButton:hover, .selectButton:hover {
    background: #f37023;
    color: #ffffff;
}

.badge-relay {
    background-color: #c0d349;
    color: #ffffff;
    border-radius: 100px;
    padding: 2px 6px;
}

.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.relay-photo {
    width: 100px;
    height: 100px;
    border-radius: 0.5rem;
    border: 0.1rem solid #cccccc;
}
