/**
 * Public styles for Curling Alberta plugin
 *
 * @since      1.0.0
 */

/* Map styling */
.map-wrapper {
    margin-bottom: 20px;
    position: relative;
}

#map {
    width: 100%;
    height: 600px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#postal-wrap {
    background: #0c8bbc;
    width: 100%;
    padding: 10px;
    display: block;
    text-align: center;
    border-radius: 0 0 4px 4px;
}

.pc-input {
    width: 200px;
    max-height: 47px;
    margin-right: 10px;
    display: inline-block;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
}

.pc-button {
    background: #8e671a;
    max-height: 47px;
    display: inline-block;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.pc-button:hover {
    background: #a67b20;
}

/* Info window styling */
.gm-style .gm-style-iw {
    padding: 10px;
}

.gm-style .gm-style-iw h4 {
    margin-top: 0;
    margin-bottom: 5px;
}

.gm-style .gm-style-iw a {
    color: #0c8bbc;
    text-decoration: none;
}

.gm-style .gm-style-iw a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    #map {
        height: 400px;
    }
    
    .pc-input {
        width: 150px;
    }
}
