/* Box */
.saman-box {
    direction: rtl;
    text-align: right;
    font-family: tahoma, sans-serif;
    max-width: 800px;
    margin: 30px auto;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    padding: 22px 26px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.saman-form-title {
    margin: 0 0 15px;
    font-size: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 8px;
}

/* Layout */
.saman-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}
.saman-col {
    flex: 1;
    min-width: 180px;
}
.saman-col label {
    display: block;
    font-size: 13px;
    margin-bottom: 3px;
    color: #444;
    font-family: var(--font-family) !important;
}

/* Inputs */
.saman-col input,
.saman-col select {
    width: 100%;
    padding: 7px 9px;
    border-radius: 6px;
    border: 1px solid #c7c7c7;
    font-size: 13px;
    box-sizing: border-box;
    font-family: var(--font-family) !important;
}
.saman-col input:focus,
.saman-col select:focus {
    outline: none;
    border-color: #1c7cd5;
    box-shadow: 0 0 0 1px rgba(28,124,213,0.2);
}

/* Buttons */
.saman-btn-wrapper {
    text-align: center;
    margin-top: 10px;
}
.saman-btn {
    background: linear-gradient(135deg, #1c7cd5, #125b9d);
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    min-width: 160px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}
.saman-btn:hover {
    opacity: 0.9;
}
.saman-btn-secondary {
    background: #555;
}

/* Plans */
.saman-plan-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #fafafa;
}
.saman-plan-main {
    flex: 1;
}
.saman-plan-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}
.saman-plan-sub {
    font-size: 12px;
    color: #555;
}
.saman-plan-price {
    text-align: left;
    white-space: nowrap;
    font-weight: bold;
    font-size: 14px;
}
.saman-plan-price span {
    display: block;
    font-size: 11px;
    font-weight: normal;
    color: #666;
}
.saman-plan-radio {
    margin-left: 6px;
}

/* Messages */
.saman-error {
    background: #ffe9e9;
    border: 1px solid #f5b4b4;
    color: #c00000;
    padding: 8px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 13px;
}
.saman-success {
    background: #eaffea;
    border: 1px solid #b9e3b9;
    color: #085f08;
    padding: 8px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 13px;
}

@media (max-width: 600px) {
    .saman-box {
        margin: 15px;
        padding: 16px;
    }
}
