.wc-busca-cep-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    display: none;
}

.wc-busca-cep-modal-content {
    background: #fff;
    padding: 20px;
    max-width: 400px;
    margin: 10% auto;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.wc-busca-cep-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 10px;
}

.wc-busca-cep-modal-header h3 {
    margin: 0;
    flex: 1;
    white-space: nowrap;
}

.wc-busca-cep-close {
    background: transparent;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    padding: 0 10px 0 10px;
    width: 50px !important;
}

.wc-busca-cep-input {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
}

.wc-busca-cep-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: white;
}

.wc-busca-cep-link-container {
    margin-bottom: 10px;
}

.wc-busca-cep-link {
    color: #0071a1;
    text-decoration: underline;
}

.wc-busca-cep-error {
    color: red;
    margin-top: 15px;
    text-align: center;
    margin-bottom: 0px !important;
}

.wc-busca-cep-success {
    color: green;
    margin-top: 15px;
    text-align: center;
}

.wc-busca-cep-result {
    margin-top: 0px;
}

.wc-ceps-list {
    margin-top: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.wc-ceps-list h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.wc-ceps-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wc-cep-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}

.wc-cep-item:hover {
    background-color: #f5f5f5;
}

.wc-cep-item strong {
    color: #0071a1;
}

.wc-busca-cep-loading {
    text-align: center;
    color: #666;
}
