*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins-Regular',sans-serif;
}
/* Kampala Map */
.kampala-map{
    padding: 2rem;
}
.map-content{
    display: flex;
    flex-direction: column;
}
.header{
    font-family: 'Poppins-Bold',sans-serif;
    font-size: clamp(3rem,9vw,4rem);
}
/* Map */
.map{
    height: 500px;
    width: 100%;
    border: 2px solid black;
}

.button-group{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
}
.currentlocation{
    background-color: green;   
}
.actionButton{
    font-size: 5rem;
    padding: .5rem 1rem;
    color: white;
    border-radius: 6px;
    border: 0;
}

.actionButton:hover{
    cursor: pointer;
}
.actionButton:active{
    transform: scale(.95);
}
/* Form Group */
.form-groups{
    padding: 2rem 0;
}
.form-group{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 0.5rem;
}

.form-field label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.form-field input {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-field input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
