.wp-isp-address-search {
    max-width: 600px;
    margin: 20px 0;
}

.wp-isp-search-form {
    margin-top: 20px;
}

.wp-isp-form-group {
    position: relative;
    margin-bottom: 20px;
}

.wp-isp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.wp-isp-form-group input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.wp-isp-form-group input[type="text"]:focus {
    outline: none;
    border-color: #0073aa;
}

.wp-isp-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: none;
}

.wp-isp-suggestion-item {
    padding: 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.wp-isp-suggestion-item:hover {
    background-color: #f5f5f5;
}

.wp-isp-suggestion-item:last-child {
    border-bottom: none;
}

.wp-isp-suggestion-main {
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.wp-isp-suggestion-location {
    font-size: 0.9em;
    color: #666;
    font-weight: normal;
}

.wp-isp-results {
    margin-top: 20px;
    padding: 20px;
    border-radius: 4px;
}

.wp-isp-loading {
    padding: 20px;
    text-align: center;
    color: #666;
}

.wp-isp-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 20px;
    border-radius: 4px;
}

.wp-isp-success h4 {
    margin-top: 0;
    color: #155724;
}

.wp-isp-address-info {
    margin-top: 15px;
}

.wp-isp-address-info p {
    margin: 8px 0;
}

.wp-isp-not-found {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 20px;
    border-radius: 4px;
}

.wp-isp-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 20px;
    border-radius: 4px;
}

.wp-isp-prices-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #c3e6cb;
}

.wp-isp-prices-section h5 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #155724;
    font-size: 18px;
}

.wp-isp-prices-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.wp-isp-prices-table thead {
    background-color: #2271b1;
    color: #fff;
}

.wp-isp-prices-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.wp-isp-prices-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.wp-isp-prices-table tbody tr:last-child td {
    border-bottom: none;
}

.wp-isp-prices-table tbody tr:hover {
    background-color: #f5f5f5;
}

.wp-isp-apartment-selector {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 4px;
    margin-top: 20px;
}

.wp-isp-apartment-selector h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #2271b1;
}

.wp-isp-apartment-selector p {
    margin-bottom: 15px;
    color: #666;
}

.wp-isp-apartment-selector .wp-isp-form-group {
    margin-bottom: 15px;
}

.wp-isp-apartment-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.wp-isp-apartment-select {
    width: 100%;
    max-width: 300px;
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.wp-isp-apartment-select:focus {
    outline: none;
    border-color: #2271b1;
}

.wp-isp-select-apartment-btn {
    margin-top: 10px;
}

