.sots-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.sots-retrieve-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sots-header {
    text-align: center;
}

.sots-title {
    font-size: 1.8rem;
    color: #1a2b49;
    margin-bottom: 8px;
    font-weight: 600;
}

.sots-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

.sots-field {
    margin-bottom: 20px;
}

.sots-field label {
    display: block;
    font-size: 0.9rem;
    color: #1a2b49;
    margin-bottom: 8px;
    font-weight: 500;
}

.sots-field textarea,
.sots-field input[type="text"],
.sots-field select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #f9fafb;
}

.sots-field textarea:focus,
.sots-field input:focus,
.sots-field select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.sots-field textarea {
    height: 120px;
    resize: vertical;
}

.sots-form {
    display: flex;
    justify-content: center;
}

.sots-button {
    background: #3b82f6;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.1s ease;
    width: 100%;
    max-width: 300px; /* Begrenze Breite für bessere Darstellung */
    text-align: center;
}

.sots-button:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.sots-button:active {
    transform: translateY(0);
}

.sots-retrieve-button {
    max-width: 200px; /* Kleinerer Button für Abrufseite */
}

.sots-result {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sots-result-title {
    font-size: 1.5rem;
    color: #1a2b49;
    font-weight: 600;
    text-align: center;
}

.sots-message-box {
    background: #f9fafb;
    padding: 20px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sots-content {
    white-space: pre-wrap;
    font-size: 1rem;
    color: #1a2b49;
    line-height: 1.6;
}

.sots-link-box {
    display: flex;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.sots-link-box input {
    flex: 1;
    background: #f3f4f6;
    padding: 12px;
    font-size: 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
}

.sots-copy-btn {
    width: auto;
    padding: 12px 20px;
    min-width: 120px;
}

.sots-note, .sots-warning {
    font-size: 0.9rem;
    color: #dc2626;
    font-style: italic;
    margin-top: 16px;
    line-height: 1.4;
    text-align: center;
}

.sots-error {
    color: #dc2626;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 20px;
}

/* Responsive Design für Mobile */
@media (max-width: 768px) {
    .sots-container {
        margin: 20px;
        padding: 16px;
    }

    .sots-title {
        font-size: 1.5rem;
    }

    .sots-subtitle {
        font-size: 0.9rem;
    }

    .sots-result-title {
        font-size: 1.3rem;
    }

    .sots-field label {
        font-size: 0.85rem;
    }

    .sots-field textarea,
    .sots-field input[type="text"],
    .sots-field select {
        padding: 10px;
        font-size: 0.9rem;
    }

    .sots-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .sots-retrieve-button {
        max-width: 100%;
    }

    .sots-link-box {
        flex-direction: column;
        gap: 8px;
    }

    .sots-link-box input {
        width: 100%;
    }

    .sots-copy-btn {
        width: 100%;
        min-width: unset;
    }

    .sots-message-box {
        padding: 16px;
    }

    .sots-content {
        font-size: 0.9rem;
    }

    .sots-note, .sots-warning {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .sots-container {
        margin: 16px;
        padding: 12px;
    }

    .sots-title {
        font-size: 1.3rem;
    }

    .sots-subtitle {
        font-size: 0.85rem;
    }
}