/* --- Aramex Rate Calculator Popup Styles --- */
#aramex-rate-result ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#aramex-rate-result li {
    background: #f9fafb;
    border: 1px solid #ddd;
    padding: 8px 12px;
    margin-bottom: 6px;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    transition: background 0.2s ease;
}

#aramex-rate-result li:hover {
    background: #eef6ff;
}

/* --- Aramex Rate Popup Wrapper --- */
#aramex-rate-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

/* Popup Box */
.aramex-rate-box {
    background: #fff;
    padding: 20px;
    width: 340px;
    margin: 8% auto;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* Close button */
#aramex-rate-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: none;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #444;
    line-height: 1;
}

/* Headings */
.aramex-rate-box h2 {
    margin: 0 0 10px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

/* Sub text */
.aramex-rate-box p {
    text-align: center;
    margin-bottom: 18px;
    font-size: 14px;
    color: #555;
    font-weight: 600;
}

/* Form Fields */
#aramex-rate-form input,
#aramex-rate-form select {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

/* Primary button using WP styling */
#aramex-rate-form .button-primary {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

/* Result section */
#aramex-rate-result {
    margin-top: 12px;
    text-align: center;
}
