.ic-wrapper {
    direction: rtl;
    text-align: right;
    padding: 20px;
    font-family: Tahoma, Arial, sans-serif;
}

.ic-card {
    background: #ffffff;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.ic-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.ic-field {
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.ic-hidden {
    display: none;
    opacity: 0;
    transform: translateY(10px);
}

.ic-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.ic-field select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    font-size: 14px;
    outline: none;
}

.ic-field select:focus {
    border-color: #007cba;
    background: #fff;
}

/* اسلایدر زیبا */
#ic-amount-slider {
    width: 100%;
    margin: 15px 0;
    cursor: pointer;
}

.ic-amount-val {
    text-align: center;
    font-size: 18px;
    color: #007cba;
    font-weight: bold;
    background: #e7f2f8;
    padding: 10px;
    border-radius: 8px;
}

/* باکس نتیجه */
.ic-result-card {
    margin-top: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    border: 1px dashed #ccc;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.ic-res-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.ic-highlight {
    border-bottom: none;
    color: #27ae60;
    font-size: 18px;
}

.ic-submit-btn {
    width: 100%;
    background: #27ae60;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.ic-submit-btn:hover {
    background: #219150;
}
