/* ===================================================
   Dilekçe Chat Widget — Styles
   =================================================== */

:root {
    --dc-primary: #1a56db;
    --dc-primary-dark: #1342a8;
    --dc-primary-light: #e8effc;
    --dc-bg: #ffffff;
    --dc-bg-secondary: #f7f8fc;
    --dc-text: #1e293b;
    --dc-text-muted: #64748b;
    --dc-border: #e2e8f0;
    --dc-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    --dc-radius: 16px;
    --dc-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* ===== Toggle Button ===== */
.dc-toggle-btn {
    position: fixed;
    display: none !important;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: var(--dc-primary);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(26, 86, 219, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dc-toggle-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(26, 86, 219, 0.5);
}

.dc-toggle-btn svg {
    width: 26px;
    height: 26px;
    transition: opacity 0.2s, transform 0.3s;
}

.dc-toggle-btn .dc-icon-close {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg);
}

.dc-widget-open .dc-toggle-btn .dc-icon-chat {
    opacity: 0;
    transform: rotate(90deg);
}

.dc-widget-open .dc-toggle-btn .dc-icon-close {
    opacity: 1;
    transform: rotate(0deg);
}

/* Badge */
.dc-badge {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 10px;
    background: var(--dc-bg);
    color: var(--dc-text);
    font-size: 13px;
    font-family: var(--dc-font);
    padding: 8px 14px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.3s;
    pointer-events: none;
}

.dc-badge::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 22px;
    width: 12px;
    height: 12px;
    background: var(--dc-bg);
    transform: rotate(45deg);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.06);
}

.dc-widget-open .dc-badge,
.dc-badge-hidden {
    opacity: 0 !important;
}

/* ===== Chat Window ===== */
.dc-chat-window {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 99998;
    width: 600px;
    max-width: calc(100vw - 32px);
    height: 880px;
    max-height: calc(100vh - 140px);
    background: var(--dc-bg);
    border-radius: var(--dc-radius);
    box-shadow: var(--dc-shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--dc-font);
}

.dc-widget-open .dc-chat-window {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Maximized State */
.dc-chat-maximized .dc-chat-window {
    width: 80vw;
    max-width: 80vw;
    height: 90vh;
    max-height: 90vh;
    bottom: 5vh;
    right: 5vw;
    border-radius: 12px;
}

/* ===== Header ===== */
.dc-chat-header {
    background: var(--dc-primary);
    color: #fff;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.dc-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dc-header-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dc-header-icon svg {
    width: 20px;
    height: 20px;
}

.dc-header-title {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
}

.dc-header-subtitle {
    font-size: 12px;
    opacity: 0.85;
    line-height: 1.3;
}

.dc-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dc-remaining {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.dc-minimize-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.8;
    padding: 4px;
    border-radius: 6px;
    transition: opacity 0.2s;
}

.dc-minimize-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
}

.dc-minimize-btn svg {
    width: 18px;
    height: 18px;
}

/* Maximize Button */
.dc-maximize-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.8;
    padding: 4px;
    border-radius: 6px;
    transition: opacity 0.2s;
}

.dc-maximize-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
}

.dc-maximize-btn svg {
    width: 18px;
    height: 18px;
}

.dc-maximize-btn .dc-icon-restore {
    display: none;
}

.dc-chat-maximized .dc-maximize-btn .dc-icon-maximize {
    display: none;
}

.dc-chat-maximized .dc-maximize-btn .dc-icon-restore {
    display: block;
}

/* ===== Messages Area ===== */
.dc-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--dc-bg-secondary);
    scroll-behavior: smooth;
}

.dc-messages::-webkit-scrollbar {
    width: 5px;
}

.dc-messages::-webkit-scrollbar-track {
    background: transparent;
}

.dc-messages::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* ===== Message Bubbles ===== */
.dc-message {
    display: flex;
    max-width: 88%;
    animation: dcFadeIn 0.3s ease;
}

.dc-message-user {
    align-self: flex-end;
}

.dc-message-assistant {
    align-self: flex-start;
}

.dc-message-bubble {
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--dc-text);
    word-wrap: break-word;
}

.dc-message-user .dc-message-bubble {
    background: var(--dc-primary);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.dc-message-assistant .dc-message-bubble {
    background: var(--dc-bg);
    border: 1px solid var(--dc-border);
    border-bottom-left-radius: 4px;
}

.dc-message-bubble strong {
    font-weight: 600;
}

.dc-message-bubble h2,
.dc-message-bubble h3,
.dc-message-bubble h4,
.dc-message-bubble h5,
.dc-message-bubble h6 {
    margin: 12px 0 6px 0;
    font-weight: 600;
    line-height: 1.3;
}

.dc-message-bubble h2 { font-size: 17px; }
.dc-message-bubble h3 { font-size: 16px; }
.dc-message-bubble h4 { font-size: 15px; }
.dc-message-bubble h5 { font-size: 14px; }
.dc-message-bubble h6 { font-size: 14px; font-weight: 500; }

.dc-message-bubble h2:first-child,
.dc-message-bubble h3:first-child,
.dc-message-bubble h4:first-child {
    margin-top: 0;
}

.dc-message-bubble ul,
.dc-message-bubble ol {
    margin: 8px 0;
    padding-left: 24px;
}

.dc-message-bubble li {
    margin: 3px 0;
    line-height: 1.4;
}

.dc-message-bubble p {
    margin: 6px 0;
}

.dc-message-bubble p:first-child {
    margin-top: 0;
}

.dc-message-bubble p:last-child {
    margin-bottom: 0;
}

.dc-message-bubble a {
    color: var(--dc-primary);
    text-decoration: underline;
    word-break: break-word;
}

.dc-message-bubble a:hover {
    color: var(--dc-primary-dark);
}

.dc-message-bubble code {
    background: var(--dc-bg-secondary);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 13px;
}

/* Copy button for dilekçe */
.dc-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 6px 14px;
    background: var(--dc-primary-light);
    color: var(--dc-primary);
    border: 1px solid var(--dc-primary);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--dc-font);
}

.dc-copy-btn:hover {
    background: var(--dc-primary);
    color: #fff;
}

/* ===== Quick Actions ===== */
.dc-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px 0;
}

.dc-quick-btn {
    background: var(--dc-bg);
    border: 1px solid var(--dc-border);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    color: var(--dc-text);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--dc-font);
    white-space: nowrap;
}

.dc-quick-btn:hover {
    border-color: var(--dc-primary);
    color: var(--dc-primary);
    background: var(--dc-primary-light);
}

/* ===== Typing Indicator ===== */
.dc-typing {
    align-self: flex-start;
}

.dc-typing-dots {
    display: flex;
    gap: 4px;
    padding: 14px 18px;
    background: var(--dc-bg);
    border: 1px solid var(--dc-border);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
}

.dc-typing-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #94a3b8;
    animation: dcBounce 1.4s ease-in-out infinite;
}

.dc-typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.dc-typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* ===== Streaming Cursor ===== */
.dc-streaming {
    min-height: 32px;
}

.dc-cursor {
    display: inline-block;
    color: var(--dc-primary);
    font-weight: 400;
    animation: dcBlink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes dcBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ===== Paywall Overlay ===== */
.dc-paywall {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: dcFadeIn 0.4s ease;
}

.dc-paywall-content {
    text-align: center;
    padding: 28px 24px;
    max-width: 320px;
}

.dc-paywall-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.dc-paywall-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dc-text);
    margin: 0 0 8px 0;
}

.dc-paywall-content p {
    font-size: 14px;
    color: var(--dc-text-muted);
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.dc-paywall-features {
    text-align: left;
    margin-bottom: 24px;
}

.dc-feature {
    padding: 6px 0;
    font-size: 13px;
    color: var(--dc-text);
}

.dc-paywall-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--dc-font);
    box-sizing: border-box;
    margin-bottom: 10px;
}

.dc-btn-primary {
    background: var(--dc-primary);
    color: #fff !important;
    border: none;
}

.dc-btn-primary:hover {
    background: var(--dc-primary-dark);
    transform: translateY(-1px);
}

.dc-btn-secondary {
    background: transparent;
    color: var(--dc-primary) !important;
    border: 1px solid var(--dc-border);
}

.dc-btn-secondary:hover {
    background: var(--dc-primary-light);
}

/* ===== Input Area ===== */
.dc-input-area {
    padding: 12px 16px;
    border-top: 1px solid var(--dc-border);
    background: var(--dc-bg);
    flex-shrink: 0;
}

.dc-input-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    background: var(--dc-bg-secondary);
    border: 1px solid var(--dc-border);
    border-radius: 12px;
    padding: 8px 10px;
    transition: border-color 0.2s;
}

.dc-input-wrapper:focus-within {
    border-color: var(--dc-primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.dc-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    font-family: var(--dc-font);
    color: var(--dc-text);
    resize: none;
    outline: none;
    max-height: 100px;
    line-height: 1.45;
    padding: 4px 0;
}

.dc-input::placeholder {
    color: #94a3b8;
}

.dc-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: none;
    background: var(--dc-primary);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    opacity: 0.5;
}

.dc-send-btn:not(:disabled) {
    opacity: 1;
}

.dc-send-btn:not(:disabled):hover {
    background: var(--dc-primary-dark);
    transform: scale(1.05);
}

.dc-send-btn svg {
    width: 18px;
    height: 18px;
}

.dc-input-footer {
    text-align: center;
    padding-top: 8px;
}

.dc-powered {
    font-size: 11px;
    color: #94a3b8;
}

/* ===== Tab Bar ===== */
.dc-tab-bar {
    display: flex;
    flex-shrink: 0;
    border-bottom: 1px solid var(--dc-border);
    background: var(--dc-bg);
}

.dc-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border: none;
    background: none;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--dc-font);
    color: var(--dc-text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.dc-tab:hover {
    color: var(--dc-text);
    background: var(--dc-bg-secondary);
}

.dc-tab-active {
    color: var(--dc-primary);
    border-bottom-color: var(--dc-primary);
}

.dc-tab svg {
    flex-shrink: 0;
}

/* ===== Search Panel ===== */
.dc-search-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--dc-bg-secondary);
}

.dc-search-input-area {
    padding: 12px 16px;
    background: var(--dc-bg);
    border-bottom: 1px solid var(--dc-border);
    flex-shrink: 0;
}

.dc-search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--dc-bg-secondary);
    border: 1px solid var(--dc-border);
    border-radius: 10px;
    padding: 8px 12px;
    transition: border-color 0.2s;
}

.dc-search-input-wrapper:focus-within {
    border-color: var(--dc-primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.dc-search-icon {
    flex-shrink: 0;
    color: var(--dc-text-muted);
}

.dc-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    font-family: var(--dc-font);
    color: var(--dc-text);
    outline: none;
    line-height: 1.45;
    padding: 2px 0;
}

.dc-search-input::placeholder {
    color: #94a3b8;
}

.dc-search-clear {
    flex-shrink: 0;
    background: none;
    border: none;
    color: var(--dc-text-muted);
    cursor: pointer;
    padding: 2px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.dc-search-clear:hover {
    color: var(--dc-text);
}

/* Search Results */
.dc-search-results {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
}

.dc-search-results::-webkit-scrollbar {
    width: 5px;
}

.dc-search-results::-webkit-scrollbar-track {
    background: transparent;
}

.dc-search-results::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* Empty State */
.dc-search-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    color: var(--dc-text-muted);
}

.dc-search-empty svg {
    margin-bottom: 12px;
    opacity: 0.4;
}

.dc-search-empty p {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px 0;
    color: var(--dc-text);
}

.dc-search-empty span {
    font-size: 12px;
}

/* Loading Spinner */
.dc-search-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.dc-search-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--dc-border);
    border-top-color: var(--dc-primary);
    border-radius: 50%;
    animation: dcSpin 0.7s linear infinite;
}

@keyframes dcSpin {
    to { transform: rotate(360deg); }
}

/* No Results */
.dc-search-no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--dc-text-muted);
    font-size: 14px;
}

.dc-search-no-results p {
    margin: 0;
}

/* Result Card */
.dc-search-card {
    display: block;
    background: var(--dc-bg);
    border: 1px solid var(--dc-border);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.dc-search-card:hover {
    border-color: var(--dc-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.dc-search-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dc-primary);
    margin: 0 0 4px 0;
    line-height: 1.35;
}

.dc-search-card-excerpt {
    font-size: 12px;
    color: var(--dc-text-muted);
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Search Footer */
.dc-search-footer {
    padding: 8px 16px;
    text-align: center;
    border-top: 1px solid var(--dc-border);
    background: var(--dc-bg);
    flex-shrink: 0;
}

/* ===== Members Panel ===== */
.dc-members-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--dc-bg-secondary);
    position: relative;
}

/* Members Login Gate */
.dc-members-login-gate {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: dcFadeIn 0.3s ease;
}

.dc-members-gate-content {
    text-align: center;
    padding: 28px 24px;
    max-width: 300px;
}

.dc-members-gate-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.dc-members-gate-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dc-text);
    margin: 0 0 8px 0;
}

.dc-members-gate-content p {
    font-size: 13px;
    color: var(--dc-text-muted);
    margin: 0 0 20px 0;
    line-height: 1.5;
}

/* Draft Badge */
.dc-draft-badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
    letter-spacing: 0.3px;
}

/* Members tab lock icon */
.dc-tab-lock {
    font-size: 10px;
    margin-left: 2px;
    opacity: 0.7;
}

/* ===== Search Shortcode Button ===== */
.dc-open-search {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--dc-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--dc-font);
    cursor: pointer;
    transition: all 0.2s;
}

.dc-open-search:hover {
    background: var(--dc-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== Animations ===== */
@keyframes dcFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes dcBounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
}

/* ===== Mobile ===== */
@media (max-width: 480px) {
    .dc-chat-window {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }

    .dc-toggle-btn {
        bottom: 16px;
        right: 16px;
        width: 54px;
        height: 54px;
    }

    .dc-badge {
        display: none;
    }

    .dc-widget-open .dc-toggle-btn {
        display: none;
    }

    .dc-maximize-btn {
        display: none !important;
    }

    .dc-tab {
        font-size: 11px;
        padding: 8px 4px;
        gap: 3px;
    }

    .dc-tab svg {
        width: 14px;
        height: 14px;
    }

    .dc-search-card-title {
        font-size: 13px;
    }
}

/* ===== Sticky Bottom Bar ===== */
.dc-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99997;
    background: transparent;
    padding: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}

.dc-sticky-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

/* Küçültülmüş mini buton */
.dc-sticky-mini {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--dc-primary);
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--dc-font);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    gap: 8px;
    align-items: center;
    z-index: 99997;
}

.dc-sticky-mini span:first-child {
    font-size: 16px;
}

.dc-sticky-mini:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Scroll sonrası mini buton göster */
.dc-sticky-bar.dc-sticky-minimized .dc-sticky-mini {
    display: flex;
    pointer-events: auto;
}

/* Chat açıkken sticky bar gizle */
.dc-widget-open .dc-sticky-bar {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

/* Mobilde sticky bar gizle */
@media (max-width: 768px) {
    .dc-sticky-bar,
    .dc-sticky-mini {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .dc-sticky-mini {
        bottom: 70px;
        right: 16px;
        padding: 10px 14px;
        font-size: 13px;
    }
}