/* Basic Styles */
body, html {
    height: 100%;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    background: #f9f9f9;
}

#app-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

header {
    background: #fff;
    color: #333;
    padding: 1.5rem 0;
    text-align: center;
    border-bottom: 1px solid #eee;
    z-index: 100;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

/* Content Layout */
#content-wrapper {
    display: flex;
    flex: 1; /* Occupy remaining height */
    overflow: hidden;
}

#map-wrapper {
    flex: 1;
    height: 100%;
}

#map {
    width: 100%;
    height: 100%;
}

#office-list-wrapper {
    width: 450px;
    height: 100%;
    overflow-y: auto;
    background: #fff;
    border-left: 1px solid #ddd;
    padding: 20px;
    box-sizing: border-box;
}

/* Office Card Styles */
.office-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: border-color 0.3s;
}

.office-card:hover {
    border-color: #007bff;
}

.office-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.office-card-content {
    padding: 20px;
}

.office-card-content h2 {
    font-size: 1.6rem;
    margin: 0 0 10px;
}

.office-card-content p {
    color: #666;
    margin: 0 0 15px;
}

/* Contact Icons Styles */
.contact-icons a {
    margin-right: 15px;
    display: inline-block;
    transition: transform 0.2s;
}

.contact-icons a:hover {
    transform: scale(1.1);
}

.contact-icons img {
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 15px;
    background: #333;
    color: #fff;
    font-size: 0.9rem;
}
