:root {
    --tenet-primary: #1e293b;
    --tenet-secondary: #334155;
    --tenet-accent: #3b82f6;
    --tenet-bg: #f1f5f9;
    --tenet-white: #ffffff;
    --tenet-border: #e2e8f0;
    --tenet-text: #0f172a;
    --tenet-text-light: #64748b;
    --tenet-success: #10b981;
    --tenet-warning: #f59e0b;
    --tenet-danger: #ef4444;
    --tenet-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.tenet-dashboard {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 1200px;
    margin: 40px auto;
    color: var(--tenet-text);
    background: var(--tenet-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--tenet-shadow);
}

/* Login Box */
.tenet-login-box {
    max-width: 450px;
    margin: 100px auto;
    padding: 40px;
}

.tenet-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.tenet-login-header h1 {
    font-size: 1.75rem !important;
    margin-bottom: 10px !important;
}

.tenet-login-header p {
    color: var(--tenet-text-light);
    font-size: 0.9375rem;
}

#loginform {
    display: block;
}

#loginform p {
    margin: 0 0 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

#loginform label {
    display: block;
    margin-bottom: 8px;
}

#loginform input[type="text"], 
#loginform input[type="password"] {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid var(--tenet-border);
    border-radius: 8px;
    font-size: 1rem;
}

#loginform .tenet-password-wrap {
    position: relative;
    display: block;
    width: 100%;
}

#loginform .tenet-password-wrap input {
    padding-right: 46px;
}

#loginform .tenet-password-toggle {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--tenet-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

#loginform .tenet-password-toggle:hover {
    color: var(--tenet-accent);
}

#loginform .login-remember {
    font-weight: 500;
    display: flex;
    align-items: center;
}

#loginform .login-remember label {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

#loginform .login-remember input {
    width: auto;
}

#loginform .login-submit {
    margin-top: 10px;
}

#loginform .login-submit input {
    width: 100%;
    background: var(--tenet-accent);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

#loginform .login-submit input:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.tenet-login-error {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 25px;
    font-size: 0.9375rem;
    font-weight: 600;
}

.tenet-login-error .dashicons {
    color: var(--tenet-danger);
}

.tenet-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
}

.tenet-dashboard h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 !important;
    color: var(--tenet-primary);
    letter-spacing: -0.025em;
    flex: 1 !important;
    min-width: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Tabs Navigation */
.tenet-tabs-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    background: #f8fafc;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid var(--tenet-border);
}

.tenet-tabs-nav a {
    padding: 10px 20px;
    text-decoration: none;
    color: var(--tenet-text-light);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9375rem;
}

.tenet-tabs-nav a:hover {
    color: var(--tenet-primary);
    background: #ffffff;
}

.tenet-tabs-nav a.active {
    background: var(--tenet-white);
    color: var(--tenet-accent);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Grid and Cards */
.tenet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.tenet-inline-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px;
    align-items: flex-end;
}

.tenet-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.tenet-card {
    background: var(--tenet-white);
    border: 1px solid var(--tenet-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.tenet-card-header {
    background: #f8fafc;
    padding: 16px 24px;
    border-bottom: 1px solid var(--tenet-border);
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tenet-text-light);
}

.tenet-card-body {
    padding: 24px;
    min-height: 100px;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.tenet-card-footer {
    padding: 12px 24px;
    background: #f8fafc;
    text-align: right;
    border-top: 1px solid var(--tenet-border);
}

/* Buttons */
.edit-btn, .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--tenet-white);
    border: 1px solid var(--tenet-border);
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--tenet-secondary);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
}

.edit-btn:hover, .button:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: var(--tenet-primary);
}

.button-primary {
    background: var(--tenet-accent) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.button-primary:hover {
    background: #2563eb !important;
    transform: translateY(-1px);
}

/* Activity Bar */
.activity-bar {
    background: #fff1f2;
    color: #9f1239;
    padding: 0;
    margin-top: 60px;
    border-radius: 12px;
    border: 1px solid #ffe4e6;
    overflow: hidden;
}

.activity-header {
    background: #ffe4e6;
    padding: 12px 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #fecdd3;
}

.activity-content {
    padding: 20px 24px;
}

.critical-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.critical-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(159, 18, 57, 0.1);
}

.critical-list li:last-child {
    border-bottom: none;
}

.cd-owner {
    font-weight: 700;
    color: #881337;
}

.cd-title {
    text-decoration: none;
    color: #9f1239;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.cd-title:hover {
    border-bottom-color: #9f1239;
}

.cd-status {
    margin-left: auto;
    font-size: 0.7rem !important;
}

/* Tables */
.tenet-table-container {
    background: var(--tenet-white);
    border-radius: 12px;
    border: 1px solid var(--tenet-border);
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.tenet-table {
    width: 100%;
    border-collapse: collapse;
}

.tenet-table th {
    background: #f8fafc;
    padding: 12px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--tenet-text-light);
    border-bottom: 1px solid var(--tenet-border);
}

.tenet-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--tenet-border);
    vertical-align: middle;
    font-size: 0.9375rem;
}

.tenet-actions {
    width: 1px;
    white-space: nowrap;
    padding: 16px 12px !important;
}

.tenet-actions-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    height: 100%;
}

.tenet-actions-wrapper .button, 
.tenet-actions-wrapper form {
    margin: 0 !important;
    display: flex;
    align-items: center;
}

.tenet-actions-wrapper form button.button {
    margin: 0 !important;
}

.tenet-table tr:last-child td {
    border-bottom: none;
}

.tenet-table tr:hover td {
    background: #f8fafc;
}

/* Status Badges */
[class^="status-"] {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-valid {
    background: #ecfdf5;
    color: #065f46;
}

.status-expiring {
    background: #fffbeb;
    color: #92400e;
}

.status-expired {
    background: #fef2f2;
    color: #991b1b;
}

/* Notifications */
.tenet-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 1px solid transparent;
}

.tenet-notice .dashicons {
    font-size: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
}

.tenet-notice-success {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}

.tenet-notice-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

/* Modals */
.tenet-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.tenet-modal.active {
    opacity: 1;
    visibility: visible;
}

.tenet-modal-content {
    background: var(--tenet-white);
    margin: auto;
    padding: 32px;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.tenet-modal-content h3 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tenet-primary);
}

.tenet-form-group {
    margin-bottom: 20px;
}

.tenet-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--tenet-secondary);
}

.tenet-form-group input, 
.tenet-form-group select, 
.tenet-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--tenet-border);
    border-radius: 8px;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.tenet-form-group input:focus {
    outline: none;
    border-color: var(--tenet-accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modal-footer {
    margin-top: 32px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Upload Area & Dropzone */
.tenet-dropzone {
    border: 2px dashed var(--tenet-border);
    border-radius: 12px;
    padding: 48px 24px;
    text-align: center;
    background: #f8fafc;
    transition: all 0.2s;
    cursor: pointer;
    margin-bottom: 24px;
}

.tenet-dropzone:hover, .tenet-dropzone.dragover {
    border-color: var(--tenet-accent);
    background: #eff6ff;
}

.tenet-dropzone span.dashicons {
    font-size: 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--tenet-accent);
    margin-bottom: 12px;
}

.tenet-dropzone p {
    margin: 0;
    font-weight: 500;
    color: var(--tenet-text-light);
}

.tenet-docs-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tenet-doc-item {
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #475569;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #e2e8f0;
}

.tenet-mini-badge {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.tenet-mini-badge.status-expired {
    background-color: var(--tenet-danger);
    box-shadow: 0 0 0 2px #fecaca;
}

.tenet-mini-badge.status-expiring {
    background-color: var(--tenet-warning);
    box-shadow: 0 0 0 2px #fde68a;
}

.tenet-file-list {
    margin-top: 24px;
}

.tenet-file-row {
    background: #f8fafc;
    border: 1px solid var(--tenet-border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tenet-file-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tenet-file-name {
    font-weight: 600;
    color: var(--tenet-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tenet-file-remove {
    color: var(--tenet-text-light);
    cursor: pointer;
    transition: color 0.2s;
}

.tenet-file-remove:hover {
    color: var(--tenet-danger);
}

.tenet-file-meta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

#tenet-upload-submit-container {
    margin-top: 24px;
    text-align: right;
}

/* Legend Modal */
.tenet-legend-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 4px;
}

.tenet-legend-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid var(--tenet-border);
    border-radius: 10px;
}

.tenet-legend-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--tenet-primary);
}

.tenet-legend-value {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--tenet-accent);
    white-space: nowrap;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 4px 10px;
    border-radius: 9999px;
}

/* Notification Bell Styles */
.tenet-notification-wrapper {
    position: relative;
    display: inline-block;
}

.tenet-bell-btn {
    background: var(--tenet-white);
    border: 1px solid var(--tenet-border);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    color: var(--tenet-secondary);
    transition: all 0.2s;
    padding: 0;
}

.tenet-bell-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: var(--tenet-accent);
}

.tenet-bell-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--tenet-danger);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.tenet-notification-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    width: 320px;
    background: var(--tenet-white);
    border: 1px solid var(--tenet-border);
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.tenet-notification-dropdown.active {
    display: block;
    animation: tenetFadeInDown 0.2s ease-out;
}

@keyframes tenetFadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tenet-notification-header {
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid var(--tenet-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 0.875rem;
}

#tenet-close-notifications {
    background: transparent;
    border: none;
    color: var(--tenet-text-light);
    cursor: pointer;
    padding: 0;
    font-size: 16px;
}

#tenet-close-notifications:hover {
    color: var(--tenet-danger);
}

.tenet-notification-list {
    max-height: 400px;
    overflow-y: auto;
}

.tenet-no-notifications {
    padding: 30px 20px;
    text-align: center;
    color: var(--tenet-text-light);
    font-size: 0.875rem;
    margin: 0;
}

.tenet-notification-item {
    padding: 12px 16px;
    border-bottom: 1px solid var(--tenet-border);
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: background 0.2s;
    position: relative;
}

.tenet-notification-item:hover {
    background: #f8fafc;
}

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

.tenet-notification-item.unread {
    background: #eff6ff;
}

.tenet-notification-item .notif-title {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--tenet-primary);
    padding-right: 20px;
}

.tenet-notification-item .notif-content {
    font-size: 0.8125rem;
    color: var(--tenet-secondary);
    line-height: 1.4;
}

.tenet-notification-item .notif-date {
    font-size: 0.75rem;
    color: var(--tenet-text-light);
    margin-top: 4px;
}

.tenet-notification-item .notif-actions {
    margin-top: 8px;
    display: flex;
    gap: 10px;
}

.tenet-notif-link {
    font-size: 0.75rem;
    color: var(--tenet-accent);
    text-decoration: none;
    font-weight: 600;
}

.tenet-notif-link:hover {
    text-decoration: underline;
}

.tenet-mark-read {
    font-size: 0.75rem;
    color: var(--tenet-text-light);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-weight: 500;
}

.tenet-mark-read:hover {
    color: var(--tenet-success);
}

/* Header Actions Alignment */
.tenet-header-actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
    flex-shrink: 0 !important;
}

.tenet-notification-wrapper {
    display: flex !important;
    align-items: center !important;
}

.tenet-bell-btn,
.button.icon-only {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
}

.tenet-bell-btn .dashicons,
.button.icon-only .dashicons {
    margin: 0 !important;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* FORCED HEADER ALIGNMENT */
.tenet-dashboard .tenet-header {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    margin-bottom: 40px !important;
    box-sizing: border-box !important;
}

.tenet-dashboard .tenet-header-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

.tenet-dashboard .tenet-header-actions > * {
    display: inline-flex !important;
    align-items: center !important;
    align-self: center !important;
    vertical-align: middle !important;
    margin: 0 !important;
    line-height: 1 !important;
    height: 40px !important;
    max-height: 40px !important;
}

.tenet-dashboard .tenet-notification-wrapper {
    width: 40px !important;
    max-width: 40px !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.tenet-dashboard .tenet-bell-btn,
.tenet-dashboard .button.icon-only {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

.tenet-dashboard .tenet-bell-btn .dashicons,
.tenet-dashboard .button.icon-only .dashicons {
    font-size: 20px !important;
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
}

/* Mobile Responsive Optimizations */
@media screen and (max-width: 768px) {
    .tenet-dashboard {
        padding: 20px !important;
        margin: 10px !important;
        border-radius: 12px !important;
        max-width: calc(100% - 20px) !important;
    }

    .tenet-dashboard .tenet-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
        margin-bottom: 30px !important;
    }

    .tenet-dashboard h1 {
        font-size: 1.5rem !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        line-height: 1.2 !important;
    }

    .tenet-dashboard .tenet-header-actions {
        width: 100% !important;
        justify-content: flex-start !important;
    }

    .tenet-tabs-nav {
        flex-direction: column !important;
        padding: 4px !important;
        gap: 4px !important;
    }

    .tenet-tabs-nav a {
        padding: 12px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }

    .tenet-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .tenet-inline-form {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .tenet-flex-between {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .tenet-table-container {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .tenet-table {
        min-width: 600px !important;
    }

    .tenet-table th, .tenet-table td {
        padding: 12px 16px !important;
        font-size: 0.875rem !important;
    }

    .tenet-modal-content {
        width: 95% !important;
        margin: 20px auto !important;
        padding: 20px !important;
        max-width: 100% !important;
    }

    .tenet-notification-dropdown {
        width: calc(100vw - 40px) !important;
        right: -10px !important;
    }

    .tenet-login-box {
        margin: 20px auto !important;
        padding: 25px !important;
        width: 90% !important;
        max-width: 100% !important;
    }

    .activity-bar {
        margin-top: 40px !important;
    }

    .critical-list li {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 5px !important;
    }

    .cd-status {
        margin-left: 0 !important;
    }

    /* Form controls on mobile */
    .tenet-form-group input, 
    .tenet-form-group select, 
    .tenet-form-group textarea,
    #loginform input {
        font-size: 16px !important; /* Prevents auto-zoom on iOS */
    }

    /* Upload Dropzone */
    .tenet-dropzone {
        padding: 20px !important;
    }
}
