/* ==========================================
   BATTLE & FUSION MODALS - PREMIUM STYLE
   ========================================== */

/* Battle Result Screen - Premium Layout */
.battle-result-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1a237e 0%, #0d1b3e 50%, #1a237e 100%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Close Button */
.battle-result-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(244, 67, 54, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.5);
}

.battle-result-close:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 25px rgba(244, 67, 54, 0.7);
}

/* Battle Type Badge */
.battle-type-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.battle-type-badge.ranked {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a237e;
    border: 3px solid rgba(255, 215, 0, 0.6);
}

.battle-type-badge.friendly {
    background: linear-gradient(135deg, #4fc3f7 0%, #0288d1 100%);
    color: #fff;
    border: 3px solid rgba(79, 195, 247, 0.6);
}

/* Result Header */
.battle-result-header {
    text-align: center;
    margin-bottom: 30px;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.battle-result-emoji {
    font-size: 4rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    animation: emojiPulse 2s ease-in-out infinite;
}

@keyframes emojiPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.battle-result-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.battle-result-title.victory {
    color: #4caf50;
    text-shadow: 0 0 30px rgba(76, 175, 80, 0.8), 0 4px 20px rgba(0, 0, 0, 0.7);
}

.battle-result-title.defeat {
    color: #f44336;
    text-shadow: 0 0 30px rgba(244, 67, 54, 0.8), 0 4px 20px rgba(0, 0, 0, 0.7);
}

/* Score Display */
.battle-score-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.score-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(30, 40, 70, 0.9) 0%, rgba(20, 30, 50, 0.95) 100%);
    border-radius: 16px;
    border: 3px solid rgba(79, 195, 247, 0.4);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.score-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.score-value {
    font-size: 1.8rem;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.score-value.positive {
    color: #4caf50;
}

.score-value.negative {
    color: #f44336;
}

.score-value.neutral {
    color: #ffd700;
}

/* Teams Comparison */
.battle-teams-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
    animation: slideUp 1s ease-out 0.4s backwards;
}

.team-column {
    background: linear-gradient(135deg, rgba(30, 40, 70, 0.9) 0%, rgba(20, 30, 50, 0.95) 100%);
    border-radius: 20px;
    padding: 20px;
    border: 3px solid rgba(79, 195, 247, 0.4);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.team-header {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(79, 195, 247, 0.3);
}

.team-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
}

.team-stat {
    display: flex;
    align-items: center;
    gap: 5px;
}

.team-stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.team-stat-value {
    font-weight: 800;
    color: #4fc3f7;
}

.team-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.team-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.team-badge.attackers {
    background: rgba(255, 152, 0, 0.3);
    border: 2px solid rgba(255, 152, 0, 0.5);
    color: #ff9800;
}

.team-badge.defenders {
    background: rgba(79, 195, 247, 0.3);
    border: 2px solid rgba(79, 195, 247, 0.5);
    color: #4fc3f7;
}

.team-creatures {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.creature-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.creature-row:hover {
    transform: translateX(5px);
    border-color: rgba(79, 195, 247, 0.5);
}

.creature-name {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.creature-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    font-weight: 700;
}

.creature-stat.attack {
    color: #ff9800;
}

.creature-stat.defense {
    color: #4fc3f7;
}

/* VS Divider */
.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.vs-text {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    animation: vsGlow 2s ease-in-out infinite;
}

@keyframes vsGlow {
    0%, 100% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.5); }
    50% { text-shadow: 0 0 50px rgba(255, 255, 255, 0.8); }
}

/* Tips Box */
.battle-tips {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.2) 100%);
    padding: 15px 20px;
    border-radius: 16px;
    border: 3px solid rgba(255, 193, 7, 0.4);
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
    margin-bottom: 30px;
    max-width: 800px;
    animation: slideUp 1.2s ease-out 0.6s backwards;
}

.tips-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.tips-icon {
    font-size: 1.5rem;
}

.tips-title {
    font-size: 1rem;
    font-weight: 800;
    color: #ffd700;
    text-transform: uppercase;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.tips-list li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: #ffd700;
    font-weight: 900;
}

/* Action Buttons */
.battle-actions {
    display: flex;
    gap: 15px;
    animation: slideUp 1.4s ease-out 0.8s backwards;
}

.battle-action-btn {
    padding: 15px 40px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.battle-action-btn.primary {
    background: linear-gradient(135deg, #4fc3f7 0%, #0288d1 100%);
    color: #fff;
    border: 3px solid rgba(79, 195, 247, 0.6);
}

.battle-action-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 195, 247, 0.5);
}

.battle-action-btn.secondary {
    background: linear-gradient(135deg, #66bb6a 0%, #388e3c 100%);
    color: #fff;
    border: 3px solid rgba(102, 187, 106, 0.6);
}

.battle-action-btn.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 187, 106, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .battle-teams-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vs-divider {
        flex-direction: row;
    }
    
    .battle-result-title {
        font-size: 2rem;
    }
    
    .battle-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .battle-action-btn {
        width: 100%;
    }
}

/* Battle Confirmation Modal */
.battle-confirm-modal {
    background: linear-gradient(135deg, rgba(30, 40, 70, 0.98) 0%, rgba(20, 30, 50, 0.99) 100%) !important;
    border: 3px solid rgba(255, 152, 0, 0.6) !important;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7), 0 0 60px rgba(255, 152, 0, 0.4) !important;
    position: relative;
    overflow-y: auto !important;
    max-height: 90vh !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
}

.battle-confirm-modal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.15) 0%, transparent 70%);
    animation: battleGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes battleGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(20px, -20px) scale(1.1); opacity: 0.8; }
}

.battle-modal-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 15px rgba(255, 152, 0, 0.8));
    animation: iconBattle 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes iconBattle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

.battle-modal-title {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 6px;
    color: #fff;
    text-shadow: 0 3px 10px rgba(255, 152, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.battle-modal-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.battle-rewards-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.2) 100%);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 2px solid rgba(255, 193, 7, 0.4);
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.rewards-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 6px;
}

.rewards-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 6px rgba(255, 193, 7, 0.6));
    animation: rewardFloat 2s ease-in-out infinite;
}

@keyframes rewardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.rewards-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 2px 6px rgba(255, 215, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rewards-list {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: nowrap;
}

.reward-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    min-width: 60px;
    flex: 1;
}

.reward-item:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(255, 193, 7, 0.6);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.reward-icon {
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.reward-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.battle-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 8px;
}

.battle-modal-actions .btn {
    min-width: 120px;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.battle-modal-actions .btn span {
    font-size: 1.2rem;
}

/* Fusion Modal Premium */
.fusion-modal-content {
    background: linear-gradient(135deg, rgba(30, 40, 70, 0.98) 0%, rgba(20, 30, 50, 0.99) 100%) !important;
    border: 3px solid rgba(171, 71, 188, 0.6) !important;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7), 0 0 60px rgba(171, 71, 188, 0.4) !important;
    max-width: 600px !important;
    position: relative;
    overflow: hidden;
}

.fusion-modal-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(171, 71, 188, 0.15) 0%, transparent 70%);
    animation: fusionGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes fusionGlow {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: translate(20px, -20px) scale(1.1) rotate(180deg); opacity: 0.8; }
}

.fusion-modal-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.fusion-modal-icon {
    font-size: 5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 15px rgba(171, 71, 188, 0.8));
    animation: fusionRotate 3s linear infinite;
}

@keyframes fusionRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.fusion-modal-title {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 3px 10px rgba(171, 71, 188, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.fusion-modal-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.fusion-selection-area {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.fusion-slot {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 3px dashed rgba(171, 71, 188, 0.5);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fusion-slot:hover {
    border-style: solid;
    border-color: rgba(171, 71, 188, 0.8);
    background: rgba(171, 71, 188, 0.1);
    transform: scale(1.02);
}

.fusion-slot.filled {
    border-style: solid;
    border-color: rgba(171, 71, 188, 0.8);
    background: linear-gradient(135deg, rgba(171, 71, 188, 0.2) 0%, rgba(123, 31, 162, 0.3) 100%);
}

.fusion-slot-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
}

.fusion-slot.filled .fusion-slot-icon {
    font-size: 4rem;
    color: #ba68c8;
    filter: drop-shadow(0 4px 10px rgba(171, 71, 188, 0.6));
}

.fusion-slot-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fusion-plus-icon {
    font-size: 3rem;
    color: rgba(171, 71, 188, 0.8);
    filter: drop-shadow(0 2px 8px rgba(171, 71, 188, 0.6));
    animation: plusPulse 2s ease-in-out infinite;
}

@keyframes plusPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.fusion-result-preview {
    background: linear-gradient(135deg, rgba(171, 71, 188, 0.2) 0%, rgba(123, 31, 162, 0.3) 100%);
    border: 3px solid rgba(171, 71, 188, 0.6);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 25px rgba(171, 71, 188, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.fusion-result-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 12px rgba(171, 71, 188, 0.8));
    animation: resultFloat 2s ease-in-out infinite;
}

@keyframes resultFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.fusion-result-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ba68c8;
    text-shadow: 0 2px 8px rgba(171, 71, 188, 0.6);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fusion-result-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.fusion-cost-box {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 193, 7, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.fusion-cost-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 6px rgba(255, 193, 7, 0.6));
}

.fusion-cost-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 2px 6px rgba(255, 215, 0, 0.6);
}

.fusion-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.fusion-modal-actions .btn {
    min-width: 150px;
    font-size: 1rem;
    font-weight: 800;
    padding: 14px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.fusion-modal-actions .btn span {
    font-size: 1.2rem;
}

/* Creature Selection List for Fusion */
.fusion-creature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    margin-bottom: 20px;
}

.fusion-creature-card {
    background: linear-gradient(135deg, rgba(30, 40, 70, 0.8) 0%, rgba(20, 30, 50, 0.9) 100%);
    border: 2px solid rgba(171, 71, 188, 0.4);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fusion-creature-card:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(171, 71, 188, 0.8);
    box-shadow: 0 6px 20px rgba(171, 71, 188, 0.4);
}

.fusion-creature-card.selected {
    border-color: #ba68c8;
    background: linear-gradient(135deg, rgba(171, 71, 188, 0.3) 0%, rgba(123, 31, 162, 0.4) 100%);
    box-shadow: 0 6px 25px rgba(171, 71, 188, 0.6);
}

/* Responsividade */
@media (max-width: 768px) {
    .battle-confirm-modal {
        max-height: 95vh !important;
        padding: 15px !important;
    }
    
    .battle-modal-icon {
        font-size: 2rem;
        margin-bottom: 6px;
    }
    
    .battle-modal-title {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
    
    .battle-modal-description {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .battle-rewards-box {
        padding: 8px;
        margin-bottom: 10px;
    }
    
    .rewards-icon {
        font-size: 1rem;
    }
    
    .rewards-title {
        font-size: 0.75rem;
    }
    
    .rewards-list {
        gap: 4px;
    }
    
    .reward-item {
        padding: 5px 8px;
        min-width: 55px;
    }
    
    .reward-icon {
        font-size: 1rem;
    }
    
    .reward-text {
        font-size: 0.65rem;
    }
    
    .battle-modal-actions {
        gap: 8px;
        flex-direction: row;
    }
    
    .battle-modal-actions .btn {
        min-width: 100px;
        font-size: 0.8rem;
        padding: 9px 14px;
        flex: 1;
    }
    
    .fusion-selection-area {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .fusion-plus-icon {
        transform: rotate(90deg);
    }
    
    .fusion-modal-actions {
        flex-direction: column;
    }
    
    .fusion-modal-actions .btn {
        width: 100%;
    }
}
