/* Tablet Interface Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Funnel Sans', sans-serif;
    background: #f5f5f5;
    color: #333;
    overflow-x: hidden;
}

.tablet-container {
    min-height: 100vh;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.tablet-header {
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tablet-header h1 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 2.5rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tablet-header h1 i {
    color: #3498db;
}

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

.header-actions .btn,
.header-actions .btn-primary,
.header-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Funnel Sans', sans-serif;
    text-decoration: none;
}

.btn-icon {
    background: #3498db;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-icon:active {
    transform: translateY(0);
}

.auto-refresh-toggle label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #555;
}

.auto-refresh-toggle input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.btn-back {
    background: #95a5a6;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-right: 20px;
}

.btn-back:hover {
    background: #7f8c8d;
}

/* Orders List */
.orders-container {
    width: 100%;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-row {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
    overflow: hidden;
}

.order-row:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateX(4px);
}

.order-row[data-status="pending"] {
    border-left-color: #f39c12;
}

.order-row[data-status="confirmed"] {
    border-left-color: #3498db;
}

.order-row[data-status="ready"] {
    border-left-color: #27ae60;
}

/* Subtle colors for delivery options */
.order-row[data-delivery-option="ophalen"] {
    background: #f8f9fa;
    border-left-color: #3498db;
}

.order-row[data-delivery-option="ophalen"]:hover {
    background: #f0f3f5;
}

.order-row[data-delivery-option="leveren"] {
    background: #fef9f0;
    border-left-color: #e67e22;
}

.order-row[data-delivery-option="leveren"]:hover {
    background: #fdf2e0;
}

/* Delivery type styling */
.order-type.delivery-ophalen {
    color: #2980b9;
    font-weight: 600;
}

.order-type.delivery-leveren {
    color: #d35400;
    font-weight: 600;
}

.order-row-main {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    gap: 30px;
}

.order-number {
    font-family: 'Funnel Display', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    min-width: 100px;
}

.order-info {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    flex-wrap: wrap;
}

.order-info > div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 1.4rem;
}

.order-customer-name {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
}

.order-customer-name i {
    color: #3498db;
    font-size: 1.3rem;
}

.order-customer-name strong {
    color: #2c3e50;
    font-weight: 700;
}

.order-info i {
    width: 22px;
    color: #7f8c8d;
    font-size: 1.3rem;
}

.order-action-button {
    display: flex;
    align-items: center;
    min-width: 220px;
}

.order-action-button .btn-action {
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Funnel Sans', sans-serif;
    white-space: nowrap;
    width: 100%;
    min-width: 200px;
    height: 50px;
}

.order-action-button .btn-accept {
    background: #3498db;
    color: white;
}

.order-action-button .btn-accept:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.order-action-button .btn-ready {
    background: #e67e22;
    color: white;
}

.order-action-button .btn-ready:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.order-action-button .btn-complete {
    background: #27ae60;
    color: white;
}

.order-action-button .btn-complete:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.order-action-button .btn-action:active {
    transform: translateY(0);
}

.order-action-button .btn-action:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.order-status-badge.order-status-completed {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #95a5a6;
    color: white;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 200px;
    justify-content: center;
}

.order-actions {
    min-width: 150px;
    display: flex;
    justify-content: flex-end;
}

.order-actions .btn {
    font-size: 1.2rem;
    padding: 14px 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Funnel Sans', sans-serif;
}

.btn-primary {
    background: #3498db;
    color: white;
    justify-content: center;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: #95a5a6;
    color: white;
    justify-content: center;
}

.btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(149, 165, 166, 0.3);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.empty-state i {
    font-size: 4rem;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.empty-state h2 {
    font-family: 'Funnel Display', sans-serif;
    color: #2c3e50;
    margin-bottom: 10px;
}

.empty-state p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* Order Details */
.order-details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.order-info-section {
    grid-column: 1 / -1;
}

.order-items-section {
    grid-column: 1 / -1;
}

.order-actions-section {
    grid-column: 1 / -1;
}

.info-card,
.items-card,
.actions-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.info-card.compact {
    padding: 15px 20px;
}

.info-card h2,
.items-card h2,
.actions-card h2 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card.compact h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.info-card h2 i,
.items-card h2 i,
.actions-card h2 i {
    color: #3498db;
}

.info-grid {
    display: grid;
    gap: 15px;
}

.info-grid.compact {
    gap: 8px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
}

.info-item.compact {
    padding: 6px 0;
    font-size: 0.95rem;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #7f8c8d;
}

.info-value {
    color: #2c3e50;
    font-weight: 500;
}

.customer-name-value {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.customer-name-value i {
    color: #3498db;
}

.address-info {
    color: #555;
    line-height: 1.8;
}

.address-info p {
    margin-bottom: 5px;
}

/* Items List */
.items-list {
    margin-bottom: 0;
}

.order-item-row {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border-bottom: 2px solid #ecf0f1;
    gap: 20px;
    background: #fafafa;
    border-radius: 8px;
    margin-bottom: 12px;
}

.order-item-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.item-quantity-badge {
    background: #3498db;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 12px 18px;
    border-radius: 10px;
    min-width: 60px;
    text-align: center;
    flex-shrink: 0;
}

.item-info {
    flex: 1;
}

.item-name {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.item-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.option-badge {
    background: #e8f4f8;
    color: #2c3e50;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid #d1ecf1;
}


/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-action {
    padding: 18px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-family: 'Funnel Sans', sans-serif;
}

.btn-accept {
    background: #3498db;
    color: white;
}

.btn-accept:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-ready {
    background: #e67e22;
    color: white;
}

.btn-ready:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.btn-complete {
    background: #27ae60;
    color: white;
}

.btn-complete:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.btn-action:active {
    transform: translateY(0);
}

.btn-action:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Confirmation Modal */
/* Generic Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 0;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.modal-header h2 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 1.6rem;
    margin: 0;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 30px;
}

.generate-code-form-wrap .form-group {
    margin-bottom: 1.25rem;
}

.generate-code-form-wrap .form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #2c3e50;
}

.generate-code-form-wrap .form-group.form-group-checkbox label {
    display: inline;
    font-weight: 500;
    color: #2c3e50;
}

.generate-code-form-wrap .form-input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 8px;
    background: #fff;
    color: #2c3e50;
    font-size: 1rem;
    box-sizing: border-box;
}

.generate-code-form-wrap .form-input:focus {
    outline: none;
    border-color: var(--yellow, #f1c40f);
    background: #fff;
}

.generate-code-form-wrap .form-code-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.generate-code-form-wrap .form-code-row .form-input {
    flex: 1;
}

.generate-code-form-wrap .form-help {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.generate-code-form-wrap .btn-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.modal-footer {
    display: flex;
    gap: 15px;
    padding: 25px 30px;
    border-top: 1px solid #ecf0f1;
    background: #f8f9fa;
}

.modal-footer .btn,
.modal-footer .btn-primary,
.modal-footer .btn-secondary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Funnel Sans', sans-serif;
    text-decoration: none;
}

.modal-footer .btn-primary {
    background: #3498db;
    color: white;
}

.modal-footer .btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.modal-footer .btn-primary:active {
    transform: translateY(0);
}

.modal-footer .btn-secondary {
    background: #95a5a6;
    color: white;
}

.modal-footer .btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(149, 165, 166, 0.3);
}

.modal-footer .btn-secondary:active {
    transform: translateY(0);
}

.form-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.form-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Generate discount code modal – state views (readable on white) */
.generate-code-state-inner {
    text-align: center;
    padding: 1rem 2rem;
    color: #2c3e50;
}

.generate-code-state-inner p {
    color: #2c3e50;
}

.generate-code-state-label {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.generated-code-display {
    font-size: 2rem;
    font-weight: bold;
    color: #2980b9;
    letter-spacing: 0.2rem;
    margin: 1rem 0;
    padding: 1rem;
    background-color: #ecf0f1;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
}

.generated-code-summary {
    margin-top: 1rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 20px;
}

.confirmation-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.confirmation-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 0;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1;
    overflow: hidden;
}

.confirmation-modal-header {
    text-align: center;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.confirmation-modal-header i {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
    opacity: 0.9;
}

.confirmation-modal-header h2 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 1.8rem;
    margin: 0;
    color: white;
}

.confirmation-modal-body {
    padding: 30px;
    text-align: center;
}

.confirmation-modal-body p {
    color: #2c3e50;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

.confirmation-modal-footer {
    display: flex;
    gap: 15px;
    padding: 25px 30px;
    border-top: 1px solid #ecf0f1;
    background: #f8f9fa;
}

.confirmation-btn-cancel,
.confirmation-btn-confirm {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Funnel Sans', sans-serif;
}

.confirmation-btn-cancel {
    background: #95a5a6;
    color: white;
}

.confirmation-btn-cancel:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(149, 165, 166, 0.3);
}

.confirmation-btn-cancel:active {
    transform: translateY(0);
}

.confirmation-btn-confirm {
    background: #27ae60;
    color: white;
}

.confirmation-btn-confirm:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.confirmation-btn-confirm:active {
    transform: translateY(0);
}

/* PIN Code Modal */
.pin-code-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.pin-code-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.pin-code-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.pin-code-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.pin-code-modal-header i {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    display: block;
}

.pin-code-modal-header h2 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 0;
}

.pin-code-modal-body {
    text-align: center;
}

.pin-code-modal-body p {
    color: #7f8c8d;
    margin-bottom: 25px;
    font-size: 1rem;
}

.pin-code-input-group {
    margin-bottom: 20px;
}

.pin-code-input {
    width: 100%;
    padding: 18px;
    font-size: 2rem;
    text-align: center;
    border: 3px solid #ecf0f1;
    border-radius: 12px;
    font-family: 'Funnel Display', sans-serif;
    font-weight: 700;
    letter-spacing: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #2c3e50;
}

.pin-code-input:focus {
    outline: none;
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.pin-code-error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-bottom: 15px;
    padding: 10px;
    background: #fee;
    border-radius: 8px;
    border: 1px solid #fcc;
}

.pin-code-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Funnel Sans', sans-serif;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.pin-code-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}

.pin-code-submit-btn:active {
    transform: scale(0.98);
    background: linear-gradient(135deg, #2980b9 0%, #21618c 100%);
}

.pin-code-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.pin-code-submit-btn i {
    font-size: 1.2rem;
}

/* Connect page (slug+pin gateway) */
.tablet-connect-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f5f5f5;
}
.tablet-connect-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
}
.tablet-connect-card h1 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.tablet-connect-card h1 i { color: #3498db; }
.tablet-connect-description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.tablet-connect-error {
    color: #c0392b;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.tablet-connect-form { margin-top: 1rem; }
.tablet-connect-field {
    margin-bottom: 1rem;
}
.tablet-connect-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: #333;
}
.tablet-connect-field input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}
.tablet-connect-submit {
    width: 100%;
    padding: 12px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0.5rem;
}
.tablet-connect-submit:hover { background: #2980b9; }
