.prompt-box {
    margin: 25px 0;
    text-align: left;
}

.prompt-box label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.prompt-box textarea {
    width: 100%;
    min-height: 140px;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    resize: vertical;
    font-size: 15px;
    font-family: inherit;
    transition: 0.2s;
    box-sizing: border-box;
}

.prompt-box textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79,70,229,0.15);
}

.prompt-tips {
    margin-top: 8px;
    font-size: 13px;
    color: #777;
}

.terms-box {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tooltip-icon {
    position: relative;
    cursor: pointer;
    color: #6c63ff;
    font-size: 14px;
    font-weight: bold;
}

.tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: 320px;
    background: #1e293b;
    color: #fff;
    text-align: left;
    border-radius: 8px;
    padding: 10px;
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.2s ease;
    z-index: 1000;
    font-size: 12px;
    line-height: 1.5;
}

.tooltip-icon:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}