.custom-fab {
    backdrop-filter: blur(10px);
    border: 2px solid #843df7;
    color: #843df7;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(132, 61, 247, 0.2);
}

.custom-fab:hover {
    background-color: #843df7;
    color: white;
}

/* Modal RCS Template */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f5f5;
    padding: 20px;
}

.custom-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-container {
    background: white;
    border-radius: 12px;
    padding: 32px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.close-btn {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    font-size: 24px;
    color: #6b46c1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-section {
    margin-bottom: 40px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 12px;
}

.text-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    background: white;
    transition: border-color 0.2s ease;
}

.text-input:focus {
    outline: none;
    border-color: #6b46c1;
}

.help-text {
    font-size: 14px;
    color: #9ca3af;
    margin-top: 8px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 24px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.option-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.option-card:hover {
    border-color: #6b46c1;
    background: #faf7ff;
}

.option-card.selected {
    border-color: #6b46c1;
    background: #faf7ff;
}

.option-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-icon {
    font-size: 36px;
    color: #6b46c1;
    font-style: italic;
    font-weight: bold;
}

.card-icon, .carousel-icon {
    width: 48px;
    height: 32px;
    background: #6b46c1;
    border-radius: 6px;
    position: relative;
}

.carousel-icon::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 2px;
    width: 44px;
    height: 28px;
    background: #6b46c1;
    border-radius: 6px;
    border: 2px solid white;
}

.card-icon::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 3px;
    background: #6b46c1;
    border-radius: 2px;
}

.option-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.option-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
}

.button-container {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.btn {
    padding: 12px 32px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-secondary {
    background: #e5e7eb;
    color: #374151;
}

.btn-secondary:hover {
    background: #d1d5db;
}

.btn-primary {
    background: #6b46c1;
    color: white;
}

.btn-primary:hover {
    background: #553c9a;
}

.btn-white {
    background: white;
    border: 1px solid #e5e7eb;
    color: #374151;
}

.btn-white:hover {
    background: #f9fafb;
}

.text-primary {
    color: #6b46c1 !important;
}

@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .modal-container {
        padding: 20px;
        margin: 10px;
    }
}

/* TemplateEmptyState */
.my-4 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 8s ease-in-out infinite;
    transition: all 0.3s ease;
}