/* 
  File: zipcodes.css
  Author: Shane John
  Date: 2025-07-20
  Course: CPSC 3750 – Web Application Development
  Purpose: Style settings for zipcode distance assignment         
  Notes: Looked to real map applications for inspiration on the color scheme.
*/

body
{
    background-image: url("map.jpeg"); 
}
.zip-container
{
    background-color: white;
    padding: 2%;
    padding-top: 10px;
    margin: 2% auto 0 auto;
    border: 3px solid orange;
    border-radius: 20px;
    justify-self: center;
    text-align: center;
    min-width: fit-content;
}

.zip-container h1
{
    color: rgb(1, 167, 26);
}

.zip-inputs
{
    width: 100px;
    font-size: 12pt;
    color: royalblue;
    justify-items: right;
    margin-right: 20px;
}
.zip-inputs input
{
    font-size: 13pt;
    max-width: 80px;
    text-align: center;
    margin-bottom: 10px;
}

.actions button
{
    font-size: 12pt;
    min-width: 200px;
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 20px;
    margin-right: 20px;
    background-color: orange;
    color: white;
    border: 0px solid;
    border-radius:20px;
}

.row
{
    margin: 1% 20% 2% 20%;
    background-color: white;
    display: flex;
    justify-self: center;
}
.zip-inputs
{
    display: block;
}

.hidden 
{
    display: none;
}

.distance-display 
{
    color: rgb(228, 148, 0);
    display: flex;
    margin-top: 1%;
    gap: 5px;
    justify-self: center;
}
.distance-display .location 
{
    display: block;
}
.distance-display .distance-line 
{
    height: 10px;
    background-color: rgb(147, 199, 242);
    max-width: 900px;
    min-width: 300px;
    border-radius: 5px;
}

.location
{
    display: flex;
    justify-items: center;
    align-items: center;
    color: rgb(18, 139, 238);
}
.location h5
{
    color:rgb(1, 167, 26)
}

section
{
    margin: 15px;
    padding: 5px 2% 1% 2%;;
    justify-self: center;
    background-color: white;
    border: 2px solid black;
    border-radius: 20px;
}