/* Secure One-Time Secrets – basic styles */

.sots-container {
    max-width: 720px;
    margin: 2rem auto;
    padding: 1.5rem;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sots-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.sots-form textarea,
.sots-form select,
.sots-form input[type="text"] {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: 6px;
    border: 1px solid #d0d7de;
    font-size: 14px;
    box-sizing: border-box;
    margin-bottom: 1rem;
}

.sots-form textarea:focus,
.sots-form select:focus,
.sots-form input[type="text"]:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37,99,235,0.25);
}

.sots-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 14px;
}

.sots-checkbox input {
    width: 16px;
    height: 16px;
}

.sots-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #1770B8, #12558A);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    transition: transform 0.08s ease-out, box-shadow 0.08s ease-out, background 0.2s ease-out;
}

.sots-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(37, 99, 235, 0.35);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.sots-button:active {
    transform: translateY(0);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

.sots-result {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed #e5e7eb;
}

.sots-result input[type="text"] {
    margin-bottom: 0.75rem;
    font-family: monospace;
    font-size: 13px;
}

.sots-copy-button {
    margin-bottom: 0.5rem;
}

.sots-note {
    font-size: 12px;
    color: #6b7280;
}

.sots-error {
    margin-top: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    background: #fef2f2;
    color: #b91c1c;
    font-size: 13px;
}

.sots-view-container h1 {
    margin-bottom: 0.75rem;
}

.sots-secret-content {
    margin-top: 1rem;
    padding: 1rem;
    background: #0f172a;
    color: #e5e7eb;
    border-radius: 8px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    white-space: pre-wrap;
    word-break: break-word;
    font-size: 13px;
}
