* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Garamond', 'Times New Roman', serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ebf0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.container {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 20px;
    box-shadow: 8px 8px 20px rgba(163, 177, 198, 0.3),
                -8px -8px 20px rgba(255, 255, 255, 0.9);
    padding: 20px;
    max-width: 700px;
    width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ff9a56 0%, #ffcc33 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: 500;
}

.subtitle {
    color: #666;
    margin-bottom: 0;
    font-size: 13px;
    font-style: italic;
    font-weight: 300;
}

.toolbar-wrapper {
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    border-radius: 10px;
    box-shadow: inset 3px 3px 6px rgba(163, 177, 198, 0.2),
                inset -3px -3px 6px rgba(255, 255, 255, 0.9);
    padding: 10px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toolbar {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
}

.btn {
    width: 36px;
    height: 40px;
    min-width: 36px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    box-shadow: 3px 3px 6px rgba(163, 177, 198, 0.2),
                -3px -3px 6px rgba(255, 255, 255, 0.9);
    color: #5a5a5a;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    user-select: none;
    flex-shrink: 0;
}

.btn:hover {
    background: linear-gradient(135deg, #ff9a56 0%, #ffcc33 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 3px 3px 8px rgba(255, 154, 86, 0.4),
                -3px -3px 6px rgba(255, 255, 255, 0.9);
}

.btn:active {
    transform: translateY(0);
    box-shadow: inset 3px 3px 6px rgba(163, 177, 198, 0.3),
                inset -3px -3px 6px rgba(255, 255, 255, 0.9);
}

.separator {
    display: none;
}

.bullet-dropdown {
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    box-shadow: 3px 3px 6px rgba(163, 177, 198, 0.2),
                -3px -3px 6px rgba(255, 255, 255, 0.9);
    color: #5a5a5a;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Georgia', 'Garamond', 'Times New Roman', serif;
    outline: none;
    transition: all 0.2s ease;
    width: 100%;
    height: 40px;
}

.bullet-dropdown:hover {
    background: linear-gradient(135deg, #ff9a56 0%, #ffcc33 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 3px 3px 8px rgba(255, 154, 86, 0.4),
                -3px -3px 6px rgba(255, 255, 255, 0.9);
}

.bullet-dropdown option {
    background: white;
    color: #333;
    padding: 8px;
}

.bullet-dropdown optgroup {
    font-weight: 600;
    font-style: italic;
}

textarea {
    width: 100%;
    min-height: 150px;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    box-shadow: inset 4px 4px 8px rgba(163, 177, 198, 0.2),
                inset -4px -4px 8px rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    outline: none;
    color: #333;
    line-height: 1.6;
}

textarea::placeholder {
    color: #999;
}

.output-section {
    margin-top: 16px;
}

.output-label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 13px;
    color: #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.copy-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, #ff9a56 0%, #ffcc33 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 3px 3px 8px rgba(255, 154, 86, 0.3),
                -2px -2px 5px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 12px rgba(255, 154, 86, 0.4),
                -3px -3px 8px rgba(255, 255, 255, 0.6);
}

.copy-btn:active {
    transform: translateY(0);
    box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.1),
                2px 2px 6px rgba(255, 154, 86, 0.3);
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    color: #ff9a56;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 6px 6px 15px rgba(163, 177, 198, 0.3),
                -6px -6px 15px rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid;
    border-image: linear-gradient(135deg, #ff9a56 0%, #ffcc33 100%) 1;
    z-index: 1000;
    max-width: calc(100% - 40px);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.instructions {
    background: linear-gradient(145deg, #fff8f0, #fff5e8);
    padding: 14px;
    border-radius: 10px;
    margin-top: 16px;
    border-left: 4px solid #ff9a56;
    box-shadow: 3px 3px 8px rgba(163, 177, 198, 0.15);
}

.instructions h3 {
    color: #ff9a56;
    margin-bottom: 8px;
    font-size: 13px;
}

.instructions ol {
    margin-left: 18px;
    color: #666;
    line-height: 1.6;
    font-size: 12px;
}

.instructions ol li {
    margin-bottom: 6px;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    body {
        padding: 5px;
    }

    .container {
        padding: 15px;
        border-radius: 15px;
    }

    h1 {
        font-size: 20px;
    }

    .subtitle {
        font-size: 12px;
    }

    .toolbar-wrapper {
        padding: 8px;
        gap: 8px;
    }

    .btn {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
    }

    .bullet-dropdown {
        font-size: 13px;
        padding: 8px 10px;
    }

    textarea {
        font-size: 14px;
        min-height: 120px;
        padding: 12px;
    }

    .output-label {
        font-size: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .copy-btn {
        width: 100%;
        padding: 10px;
    }

    .instructions {
        padding: 12px;
    }

    .instructions h3 {
        font-size: 12px;
    }

    .instructions ol {
        font-size: 11px;
        margin-left: 16px;
    }

    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        font-size: 12px;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .toolbar-wrapper {
        padding: 6px;
    }

    .btn {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 13px;
    }
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Garamond', 'Times New Roman', serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ebf0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.top-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    z-index: 100;
}

.container {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 20px;
    box-shadow: 8px 8px 20px rgba(163, 177, 198, 0.3),
                -8px -8px 20px rgba(255, 255, 255, 0.9);
    padding: 30px;
    max-width: 700px;
    width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

h1 {
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ff9a56 0%, #ffcc33 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    font-weight: 500;
}

.subtitle {
    color: #666;
    margin-bottom: 0;
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
}

.toolbar {
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    border-radius: 10px;
    box-shadow: inset 3px 3px 6px rgba(163, 177, 198, 0.2),
                inset -3px -3px 6px rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    box-shadow: 3px 3px 6px rgba(163, 177, 198, 0.2),
                -3px -3px 6px rgba(255, 255, 255, 0.9);
    color: #5a5a5a;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    user-select: none;
    flex-shrink: 0;
}

.btn:hover {
    background: linear-gradient(135deg, #ff9a56 0%, #ffcc33 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 3px 3px 8px rgba(255, 154, 86, 0.4),
                -3px -3px 6px rgba(255, 255, 255, 0.9);
}

.btn:active {
    transform: translateY(0);
    box-shadow: inset 3px 3px 6px rgba(163, 177, 198, 0.3),
                inset -3px -3px 6px rgba(255, 255, 255, 0.9);
}

.separator {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, 
        rgba(163, 177, 198, 0) 0%, 
        rgba(163, 177, 198, 0.3) 50%, 
        rgba(163, 177, 198, 0) 100%
    );
    margin: 0 2px;
    flex-shrink: 0;
}

.bullet-dropdown {
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    box-shadow: 3px 3px 6px rgba(163, 177, 198, 0.2),
                -3px -3px 6px rgba(255, 255, 255, 0.9);
    color: #5a5a5a;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Georgia', 'Garamond', 'Times New Roman', serif;
    outline: none;
    transition: all 0.2s ease;
    min-width: 220px;
}

.bullet-dropdown:hover {
    background: linear-gradient(135deg, #ff9a56 0%, #ffcc33 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 3px 3px 8px rgba(255, 154, 86, 0.4),
                -3px -3px 6px rgba(255, 255, 255, 0.9);
}

.bullet-dropdown option {
    background: white;
    color: #333;
    padding: 8px;
}

.bullet-dropdown optgroup {
    font-weight: 600;
    font-style: italic;
}

textarea {
    width: 100%;
    min-height: 180px;
    padding: 16px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    box-shadow: inset 4px 4px 8px rgba(163, 177, 198, 0.2),
                inset -4px -4px 8px rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    outline: none;
    color: #333;
    line-height: 1.6;
}

textarea::placeholder {
    color: #999;
}

.output-section {
    margin-top: 16px;
}

.output-label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copy-btn {
    padding: 8px 20px;
    background: linear-gradient(135deg, #ff9a56 0%, #ffcc33 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 3px 3px 8px rgba(255, 154, 86, 0.3),
                -2px -2px 5px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 12px rgba(255, 154, 86, 0.4),
                -3px -3px 8px rgba(255, 255, 255, 0.6);
}

.copy-btn:active {
    transform: translateY(0);
    box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.1),
                2px 2px 6px rgba(255, 154, 86, 0.3);
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    color: #ff9a56;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 6px 6px 15px rgba(163, 177, 198, 0.3),
                -6px -6px 15px rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid;
    border-image: linear-gradient(135deg, #ff9a56 0%, #ffcc33 100%) 1;
    z-index: 1000;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.instructions {
    background: linear-gradient(145deg, #fff8f0, #fff5e8);
    padding: 16px;
    border-radius: 10px;
    margin-top: 16px;
    border-left: 4px solid #ff9a56;
    box-shadow: 3px 3px 8px rgba(163, 177, 198, 0.15);
}

.instructions h3 {
    color: #ff9a56;
    margin-bottom: 8px;
    font-size: 14px;
}

.instructions ol {
    margin-left: 20px;
    color: #666;
    line-height: 1.6;
    font-size: 13px;
}

.instructions ol li {
    margin-bottom: 6px;
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Garamond', 'Times New Roman', serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ebf0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 20px;
    box-shadow: 8px 8px 20px rgba(163, 177, 198, 0.3),
                -8px -8px 20px rgba(255, 255, 255, 0.9);
    padding: 30px;
    max-width: 700px;
    width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

h1 {
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ff9a56 0%, #ffcc33 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    font-weight: 500;
}

.subtitle {
    color: #666;
    margin-bottom: 0;
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
}

.toolbar {
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    border-radius: 10px;
    box-shadow: inset 3px 3px 6px rgba(163, 177, 198, 0.2),
                inset -3px -3px 6px rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    box-shadow: 3px 3px 6px rgba(163, 177, 198, 0.2),
                -3px -3px 6px rgba(255, 255, 255, 0.9);
    color: #5a5a5a;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    user-select: none;
    flex-shrink: 0;
}

.btn:hover {
    background: linear-gradient(135deg, #ff9a56 0%, #ffcc33 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 3px 3px 8px rgba(255, 154, 86, 0.4),
                -3px -3px 6px rgba(255, 255, 255, 0.9);
}

.btn:active {
    transform: translateY(0);
    box-shadow: inset 3px 3px 6px rgba(163, 177, 198, 0.3),
                inset -3px -3px 6px rgba(255, 255, 255, 0.9);
}

.separator {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, 
        rgba(163, 177, 198, 0) 0%, 
        rgba(163, 177, 198, 0.3) 50%, 
        rgba(163, 177, 198, 0) 100%
    );
    margin: 0 2px;
    flex-shrink: 0;
}

.bullet-dropdown {
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    box-shadow: 3px 3px 6px rgba(163, 177, 198, 0.2),
                -3px -3px 6px rgba(255, 255, 255, 0.9);
    color: #5a5a5a;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Georgia', 'Garamond', 'Times New Roman', serif;
    outline: none;
    transition: all 0.2s ease;
    min-width: 220px;
}

.bullet-dropdown:hover {
    background: linear-gradient(135deg, #ff9a56 0%, #ffcc33 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 3px 3px 8px rgba(255, 154, 86, 0.4),
                -3px -3px 6px rgba(255, 255, 255, 0.9);
}

.bullet-dropdown option {
    background: white;
    color: #333;
    padding: 8px;
}

.bullet-dropdown optgroup {
    font-weight: 600;
    font-style: italic;
}

textarea {
    width: 100%;
    min-height: 180px;
    padding: 16px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    box-shadow: inset 4px 4px 8px rgba(163, 177, 198, 0.2),
                inset -4px -4px 8px rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    outline: none;
    color: #333;
    line-height: 1.6;
}

textarea::placeholder {
    color: #999;
}

.output-section {
    margin-top: 16px;
}

.output-label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copy-btn {
    padding: 8px 20px;
    background: linear-gradient(135deg, #ff9a56 0%, #ffcc33 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 3px 3px 8px rgba(255, 154, 86, 0.3),
                -2px -2px 5px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 12px rgba(255, 154, 86, 0.4),
                -3px -3px 8px rgba(255, 255, 255, 0.6);
}

.copy-btn:active {
    transform: translateY(0);
    box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.1),
                2px 2px 6px rgba(255, 154, 86, 0.3);
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    color: #ff9a56;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 6px 6px 15px rgba(163, 177, 198, 0.3),
                -6px -6px 15px rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid;
    border-image: linear-gradient(135deg, #ff9a56 0%, #ffcc33 100%) 1;
    z-index: 1000;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.instructions {
    background: linear-gradient(145deg, #fff8f0, #fff5e8);
    padding: 16px;
    border-radius: 10px;
    margin-top: 16px;
    border-left: 4px solid #ff9a56;
    box-shadow: 3px 3px 8px rgba(163, 177, 198, 0.15);
}

.instructions h3 {
    color: #ff9a56;
    margin-bottom: 8px;
    font-size: 14px;
}

.instructions ol {
    margin-left: 20px;
    color: #666;
    line-height: 1.6;
    font-size: 13px;
}

.instructions ol li {
    margin-bottom: 6px;
}