/* body {
    font-family: sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.input {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #1f2937;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    width: 100%;
    padding: 0.625rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.input:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.5);
}

#map {
    width: 100%;
    height: 90vh;
    background-color: white;
}

.api-input-section {
    border-bottom: #ccc 1px solid;
    max-width: 500px;
    padding-bottom: 10px;
}

.api-input {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    max-width: 500px;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.api-input input {
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.zip-input {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 10px;
    max-width: 500px;
    margin-bottom: 20px;
    padding-top: 20px;
}

.zip-input label, .zip-input input {
    width: 50%;
    box-sizing: border-box;
    font-size: 16px;
}

.zip-input label {
    padding-left: 10px;
}

.zip-input input {
    padding: 8px;
    padding-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.button-section {
    max-width: 500px;
    text-align: center;
}

#weatherButton {
    background-color: white;
    border: 2px solid transparent;
    border-image: linear-gradient(to right, #FDEDEC, #FAEBE7, #F5EEF8, #EAF2F8, #EBF5FB, #E8F8F5, #F9E79F) 1;
    color: black;
    font-size: 18px;
    padding: 12px 24px;
    transition: all 0.3s ease-in-out;
}

#weatherButton:hover {
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

#weatherButton:active {
    background-color: #b3e5fc;
}

.input-container {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.input-container input {
    flex-grow: 1;
    max-width: 500px;
}

.input-container .remove-button {
    margin-left: 10px;
    padding: 5px;
    background-color: #f00;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 30px;
    height: 30px;
}



/* General styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

/* Inputs container */
.inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 500px;
    width: 100%;
}

.label {
    font-size: 1.2rem;
    color: #333333;
    font-weight: bold;
    margin-bottom: 10px;
}

.input-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
}

.input {
    flex-grow: 1;
    padding: 10px 15px;
    font-size: 1rem;
    background-color: #f5f5f5;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    outline: none;
}

.input:focus {
    border-color: #4a90e2;
    background-color: #ffffff;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
}

.add-button {
    background-color: #0f0;
    margin-top: 10px;
    padding: 5px;
    width: 30px;
    height: 30px;
    
    color: #fff;
    border: none;
    border-radius: 100%;
    cursor: pointer;
}

.remove-button {
    background-color: lightcoral;
    font-size: 0.8rem;
    font-weight: bold;
    color: #ffffff;
    border: none;
    border-radius: 20%;
    cursor: pointer;
    outline: none;
    margin-left: 10px;
    padding: 5px 7px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-button:hover,
.add-button:hover {
    background-color: #3a75c2;
}

.remove-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    color: #999;
}

.remove-button:disabled:hover {
    background-color: #ccc;
}

/* Map container */
#map {
    width: 100%;
    height: calc(100vh - 100px);
    background-color: #e0e0e0;
}

.link-paragraph {
    font-family: Arial, sans-serif;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.link-paragraph a {
    color: #0070c9;
    text-decoration: none;
}

.link-paragraph a:hover {
    text-decoration: underline;
}
