#adTextDisplay {
    line-height: 1.3;
}

.p-4 {
    padding: 1rem;
}

.flex1 {
    display: flex;
}

.justify-between1 {
    justify-content: space-between;
}

.items-center1 {
    align-items: center;
}

a {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 768px) {
    .form {
        bottom: -30px;
    }
}

.section-title {
    font-weight: 600;
    padding-bottom: 12px;
}

.strategy-card {
    border: 2px solid #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* عند تحديد البطاقة */
.strategy-card.selected {
    border-color: #28a745;
    background-color: #f0fff4;
    box-shadow: 0 4px 8px rgba(0, 128, 0, 0.2);
    transform: scale(1.02);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.bg-primary-light {
    background-color: rgba(13, 110, 253, 0.1);
}

.bg-success-light {
    background-color: rgba(25, 135, 84, 0.1);
}

.bg-info-light {
    background-color: rgba(13, 202, 240, 0.1);
}

.card-icon i {
    font-size: 28px;
}

/* مؤشر التحديد */
.selected-indicator {
    position: absolute;
    top: 15px;
    left: -60px;
    background: #0d6efd;
    color: white;
    padding: 5px 15px 5px 30px;
    border-radius: 0 30px 30px 0;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
}

.strategy-card.selected .selected-indicator {
    opacity: 1;
    left: -10px;
}

.selected-strategy-alert {
    border-left: 4px solid #0d6efd;
    border-radius: 6px;
}

.selected-strategy-alert h6 {
    font-weight: 600;
}

.strategy-name {
    color: #0d6efd;
    font-weight: 700;
}

.strategy-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.strategy-card.selected {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.selected-indicator {
    transition: all 0.4s ease-out;
}

.strategy-card {
    position: relative;
    overflow: hidden;
}

.recommended-badge {
    position: absolute;
    top: 18px;
    right: -30px;
    transform: rotate(45deg);
    background-color: #ffc107;
    width: 120px;
    text-align: center;
    z-index: 1;
}

.recommended-badge .badge {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 0;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* تحسين ظهور البطاقة الموصى بها */
.strategy-card[data-strategy="OUTCOME_SALES"] {
    border: 2px solid #ffc107;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

.strategy-card[data-strategy="OUTCOME_SALES"]:hover {
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

