/* General Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #f5f5f7;
    color: #1d1d1f;
    line-height: 1.5;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

header h1 {
    font-size: 28px;
    font-weight: 600;
    color: #000;
}

/* Profile Section */
.profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.dog-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #86868b;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d2d2d7;
    border-radius: 10px;
    font-size: 16px;
    background-color: #fff;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #007aff;
}

/* Buttons */
.btn {
    width: 100%;
    padding: 12px;
    background-color: #007aff;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0062cc;
}

/* Login and Register Forms */
.login-form, .register-form {
    max-width: 400px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.login-form h2, .register-form h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

/* Connections Section */
.connections {
    background-color: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.connections h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #000;
}

/* QR Code Container */
#qr-code-container {
    margin-top: 20px;
    text-align: center;
    padding: 20px;
    background-color: #f5f5f7;
    border-radius: 10px;
}

/* Map Container */
.map-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.map-container h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #000;
}

#map {
    height: 400px;
    border-radius: 10px;
}

/* Location Group */
.location-group {
    display: flex;
    gap: 10px;
}

.location-group input {
    flex: 1;
}

/* Get Location Button */
#get-location {
    margin-top: 10px;
    background-color: #5E5CE6;
}

#get-location:hover {
    background-color: #4A49C7;
}

/* Links */
a {
    color: #007aff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Schedule Meeting Section */
.schedule-meeting {
    background-color: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.schedule-meeting h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .login-form, .register-form {
        margin: 20px auto;
        padding: 20px;
    }
}