.ts-property-tool .container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 24px;
}
.ts-property-tool .content-wrapper {
    display: flex;
    flex-direction: column;
}
.ts-property-tool .form-container {
    width: 100%;
}
.ts-property-tool .results-container {
    width: 100%;
    margin-top: 20px;
}
.ts-property-tool .header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.ts-property-tool .header h1 {
    color: #112b38;
    font-size: 24px;
}
.ts-property-tool .form-group {
    margin-bottom: 20px;
}
.ts-property-tool label {
    display: block;
    color: #112b38;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}
.ts-property-tool .radio-container,
.ts-property-tool .checkbox-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.ts-property-tool .radio-button,
.ts-property-tool .checkbox-button {
    display: none;
}
.ts-property-tool .radio-label,
.ts-property-tool .checkbox-label {
    padding: 8px 16px;
    border: 2px solid #3ed9cc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #112b38;
}
.ts-property-tool .radio-button:checked + .radio-label,
.ts-property-tool .checkbox-button:checked + .checkbox-label {
    background: #3ed9cc;
    color: #112b38;
}
.ts-property-tool textarea, .ts-property-tool select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    resize: vertical;
}
.ts-property-tool textarea::placeholder {
    color: rgba(0,0,0,0.3);
}
.ts-property-tool textarea:focus, .ts-property-tool select:focus {
    outline: none;
    border-color: #3ed9cc;
}
.ts-property-tool button {
    height: 50px;
    width: 100%;
    padding: 12px;
    background-color: #3ed9cc;
    border: 3px solid #3ed9cc;
    color: #112b38;
    font-size: 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.ts-property-tool button:hover {
    opacity: 0.9;
}
.ts-property-tool #property-description-generator-loading, 
.ts-property-tool #property-description-generator-error {
    text-align: center;
    margin: 20px 0;
}
.ts-property-tool .result-section {
    background-color: #112b38;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 16px;
}
.ts-property-tool .result-section h2 {
    margin-bottom: 12px;
    font-size: 18px;
}
.ts-property-tool .result-item {
    background: rgba(255,255,255,0.1);
    padding: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 15px;
    line-height: 1.5;
}
.ts-property-tool .result-item:hover {
    background: rgba(255,255,255,0.2);
}
.ts-property-tool .result-hint {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    text-align: right;
    margin-top: 6px;
    font-style: italic;
}
.ts-property-tool .copy-feedback {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #FF7F58;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    z-index: 1000;
}
.ts-property-tool .copy-feedback.show {
    display: block;
    animation: fadeInOut 2s ease-in-out;
}
.ts-property-tool .results {
    animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(20px); }
    15% { opacity: 1; transform: translateY(0); }
    85% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}