body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
}

.shape-option {
    position: relative;
    cursor: pointer;
    border-radius: 0.5rem;
    border: 2px solid #D1D5DB;
    transition: all 0.2s;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shape-option:hover {
    background-color: #F3F4F6;
}

.shape-option.selected {
    border-color: #FBBF24;
    background-color: #FFFBEB;
}

.tab-button.active {
    border-bottom-width: 2px;
    border-color: #FBBF24;
    color: #FBBF24;
    font-weight: 700;
}

.data-type-button {
    transition: all 0.2s;
}

.data-type-button.active {
    background-color: #FBBF24;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

input[type="color"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 0.5rem;
}

input[type="color"].border-on-white {
    border: 1px solid #000000;
}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 0.5rem;
}

.modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    position: relative;
}

.status-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.status-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.status-info {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

@media (max-width: 640px) {
    .phone-flex-wrap {
        flex-direction: column;
        gap: 0.75rem;
    }

    .phone-select,
    #phoneNumberInput {
        width: 100%;
    }
}