
body {
    font-family: "Roboto", sans-serif;
    background: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header */
header {
    background: #778eff;
    color: #ffffff;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Main Container */
.container {
    width: 90%;
    max-width: 600px;
    background: #fff;
    padding: 20px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
}

/* Location Inputs */
.location-input {
    display: flex;
    align-items: center;
    margin: 8px 0;
    gap: 10px;
}

/* Location Input Field */
.location {
    width: 90%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f8f9fa;
    color: #333;
    font-size: 16px;
    transition: border-color 0.3s ease, background 0.3s ease;
    height: 30px;
}

/* Destination Input */
#destination {
    width: 95%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f8f9fa;
    color: #333;
    font-size: 16px;
}

/* Hover Effects */
.location:focus, #destination:focus {
    border-color: #1a73e8;
    outline: none;
    background: #fff;
}

/* Remove Button */
.remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: none;
    background: none;
    color: #d93025;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    height: 40px;
    width: 40px;
    transition: background 0.3s ease;
}

.remove-btn:hover {
    background: rgba(255, 140, 0, 0.432);
}

/* Buttons */
button {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    margin-top: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
    background: #155ab6;
    transform: scale(1.05);
}

select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #0080ff;
    color: #ffffff;
    font-size: 16px;
    margin: 12px 0;
    text-align: center;
}

/* Meeting Point Display */
#map {
    height: 400px;
    width: 100%;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#meetingPointContainer {
    display: flex;
    align-items: center;
    gap: 10px;
}

#meetingPoint {
    margin: 0;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
    flex-grow: 1;
}

#changeMeetingPoint {
    background-color: #34a853;
    padding: 8px 16px;
    font-size: 0.9em;
}

#changeMeetingPoint:hover {
    background-color: #2e8b57;
}

#shareMeetingPoint {
    background-color: #fbbc05;
    padding: 8px 16px;
    font-size: 0.9em;
}

#shareMeetingPoint:hover {
    background-color: #e0a800;
}


footer {
    background: #778eff;
    color: #ffffff;
    padding: 10px;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}