* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    display: flex;
    height: 100vh;
    background-color: #f5f5f5;
    color: #333;
}

/* Sidebar Styles */
.sidebar {
    width: 240px;
    background-color: #2d2d2d;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    overflow-y: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px 30px 20px;
    font-size: 18px;
    font-weight: 600;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: white;
    color: #2d2d2d;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.main-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.nav-item:hover {
    background-color: #3a3a3a;
    color: white;
}

.nav-item.active {
    background-color: #3a3a3a;
    color: white;
}

.nav-item .icon {
    font-size: 18px;
    width: 24px;
}

.sidebar-bottom {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid #3a3a3a;
}

.test-period {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #b0b0b0;
}

.days-remaining {
    font-size: 14px;
    margin-bottom: 12px;
}

.subscribe-btn {
    width: 100%;
    padding: 10px;
    background-color: #ec8306;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.2s;
}

.subscribe-btn:hover {
    background-color: #d07205;
}

.bottom-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bottom-nav .nav-item {
    padding: 10px 0;
}

/* Main Content Styles */
.main-content {
    flex: 1;
    overflow-y: auto;
    background-color: #f5f5f5;
}

.header {
    padding: 40px 40px 20px 40px;
    background-color: #f5f5f5;
}

.date {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.header h1 {
    font-size: 32px;
    font-weight: 600;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 20px;
    padding: 20px 40px 40px 40px;
}

/* Card Styles */
.card {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* First Steps Card */
.steps-list {
    list-style: none;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.radio {
    width: 20px;
    height: 20px;
    border: 2px solid #d0d0d0;
    border-radius: 50%;
    flex-shrink: 0;
}

.radio.checked {
    background-color: #6366f1;
    border-color: #6366f1;
    position: relative;
}

.radio.checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-item.completed .step-text {
    color: #6366f1;
    font-weight: 500;
}

/* Project Start Card */
.project-start {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f2 100%);
    display: flex;
    gap: 20px;
    align-items: center;
}

.project-illustration {
    position: relative;
    width: 250px;
    height: 200px;
    flex-shrink: 0;
}

.project-illustration img {
    width: 120px;
    height: auto;
}

.phone-mockup {
    position: absolute;
    right: 0;
    top: 20px;
    width: 150px;
    height: 180px;
    background-color: #1f2937;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 10px;
}

.project-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.project-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.start-btn {
    padding: 10px 20px;
    background-color: white;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.start-btn:hover {
    border-color: #999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Recent Projects */
.project-item {
    padding: 16px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 12px;
}

.project-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.project-info p {
    color: #666;
    font-size: 14px;
}

.project-meta {
    margin-top: 8px;
    font-size: 13px;
    color: #999;
    display: flex;
    gap: 16px;
}

.show-all-btn {
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s;
}

.show-all-btn:hover {
    border-color: #999;
    background-color: #f9f9f9;
}

/* Open Requests */
.amount-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 30px 0;
    background-color: #f9f9f9;
    border-radius: 8px;
    justify-content: center;
}

.currency {
    font-size: 32px;
    font-weight: 300;
}

.amount {
    font-size: 48px;
    font-weight: 300;
}

.label {
    color: #666;
    font-size: 14px;
}

/* Right Column */
.right-column {
    display: flex;
    flex-direction: column;
}

/* Contact Card */
.contact-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.contact-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.contact-info p {
    color: #666;
    font-size: 14px;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s;
}

.contact-action:hover {
    background-color: #f0f0f0;
}

.contact-action .icon {
    font-size: 20px;
}

.contact-action > div {
    flex: 1;
}

.action-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
}

.action-value {
    font-size: 13px;
    color: #666;
}

.arrow {
    color: #999;
    font-size: 20px;
}

.demo-btn {
    width: 100%;
    padding: 12px;
    background-color: #ec8306;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.demo-btn:hover {
    background-color: #d07205;
}

/* Weather Card */
.weather-main {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.weather-icon {
    font-size: 48px;
}

.temperature {
    font-size: 36px;
    font-weight: 300;
}

.weather-location {
    font-size: 14px;
}

.temp-range {
    color: #666;
    margin-top: 4px;
}

.weather-forecast {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.forecast-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    background-color: #f9f9f9;
    border-radius: 8px;
    font-size: 13px;
}

.forecast-item .icon {
    font-size: 24px;
}

/* Tasks Card */
.task-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.task-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.task-item span {
    flex: 1;
    color: #666;
}

.task-menu {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 0 8px;
}

.task-menu:hover {
    color: #666;
}

/* Contacts Page Styles */
.contacts-page {
    background-color: #f5f5f5;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background-color: white;
    border-bottom: 1px solid #e5e5e5;
}

.page-header h1 {
    font-size: 28px;
    font-weight: 600;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.new-contact-btn {
    padding: 10px 24px;
    background-color: #ec8306;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.new-contact-btn:hover {
    background-color: #d07205;
}

.page-content {
    padding: 24px 40px;
}

/* Search Bar */
.search-bar {
    background-color: white;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-bar input {
    flex: 1;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.search-bar input:focus {
    border-color: #ec8306;
}

.search-bar input::placeholder {
    color: #999;
}

.search-btn {
    background-color: transparent;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    transition: color 0.2s;
}

.search-btn:hover {
    color: #333;
}

/* Table Container */
.table-container {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.contacts-table thead {
    background-color: #fafafa;
    border-bottom: 1px solid #e5e5e5;
}

.contacts-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-transform: none;
}

.contacts-table th.col-type {
    width: 80px;
}

.contacts-table th.col-name {
    width: auto;
    cursor: pointer;
    user-select: none;
}

.contacts-table th.col-number {
    width: 200px;
}

.contacts-table th.col-edited {
    width: 250px;
}

.contacts-table th.col-actions {
    width: 60px;
}

.sort-icon {
    margin-left: 4px;
    font-size: 10px;
    color: #999;
}

.contacts-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.contacts-table tbody tr:hover {
    background-color: #fafafa;
}

.contacts-table tbody tr:last-child {
    border-bottom: none;
}

.contacts-table td {
    padding: 20px;
}

.contact-avatar {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.empty-value {
    color: #ccc;
}

.edited-info {
    font-size: 13px;
}

.edited-info > div:first-child {
    color: #333;
    margin-bottom: 4px;
}

.edited-by {
    color: #999;
}

.delete-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 18px;
    color: #ff6b6b;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.delete-btn:hover {
    opacity: 1;
}

/* Table Footer */
.table-footer {
    background-color: white;
    padding: 16px 20px;
    border-radius: 0 0 8px 8px;
    margin-top: -8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.result-count {
    font-size: 13px;
    color: #999;
}

/* Login Page Styles */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    padding: 20px;
}

/* Registration page with blurred dashboard background */
.dashboard-blur-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    background-color: #d0d0d0;
}

.dashboard-background-iframe {
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: none;
    filter: blur(12px) brightness(0.7);
    pointer-events: none;
    position: absolute;
    top: -15px;
    left: -15px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

/* Registration steps header */
.register-header-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.register-header {
    width: 100%;
    max-width: 1400px;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
}

.register-header .back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
    flex-shrink: 0;
    padding: 0 30px;
}

.register-header .back-link:hover {
    color: #ec8306;
}

.register-steps {
    display: flex;
    gap: 40px;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 14px;
    position: relative;
}

.step:not(:last-child)::after {
    content: '—';
    position: absolute;
    right: -28px;
    color: #ccc;
    font-weight: 300;
}

.step.active {
    color: #ff8c00;
}

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #e5e5e5;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
}

.step.active .step-number {
    background-color: #ff8c00;
    color: white;
}

.step-label {
    font-weight: 500;
}

/* Register modal content */
.register-modal {
    position: relative;
    z-index: 1001;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    padding: 40px 0;
}

.register-box {
    background-color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 40px;
    width: 90%;
    max-width: 800px;
}

.register-box-header {
    text-align: center;
    margin-bottom: 24px;
}

.register-box-header h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.register-box-header .login-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #ff8c00;
    letter-spacing: 0.5px;
}

.register-box .login-form {
    gap: 16px;
}

.auth-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
    width: 100%;
    max-width: 1400px;
    padding: 0 30px;
}

.back-link:hover {
    color: #ec8306;
}

.back-link .icon {
    font-size: 16px;
}

.login-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
}

.login-form-wrapper {
    background-color: white;
    border-radius: 12px;
    padding: 48px;
    border: 1px solid #e5e5e5;
    width: 100%;
    max-width: 480px;
}

.login-form-wrapper.register-box {
    max-width: 800px;
    width: 90%;
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
    width: 100%;
    max-width: 480px;
}

.login-header h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.login-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: #ec8306;
    letter-spacing: 0.5px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox-group {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.inline-link {
    color: #ec8306;
    text-decoration: underline;
}

.inline-link:hover {
    color: #d07205;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.form-group input {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    background-color: #fafafa;
}

.form-group input:focus {
    border-color: #ec8306;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    background-color: white;
}

.form-group input::placeholder {
    color: #999;
}

.field-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

.field-hint .hint-icon {
    font-size: 14px;
    color: #999;
}

.password-input-wrapper {
    position: relative;
}

.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s;
    outline: none;
    background-color: #fafafa;
    cursor: pointer;
}

.form-group select:focus {
    border-color: #ec8306;
    box-shadow: 0 0 0 3px rgba(236, 131, 6, 0.1);
    background-color: white;
}

.phone-input-wrapper {
    display: flex;
    gap: 8px;
}

.phone-input-wrapper .phone-prefix {
    width: 120px;
    flex-shrink: 0;
}

.phone-input-wrapper input {
    flex: 1;
}

.password-input-wrapper input {
    width: 100%;
    padding-right: 48px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.toggle-password:hover {
    opacity: 1;
}

.toggle-password img {
    width: 20px;
    height: 20px;
}

/* Login error message */
.login-error {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background-color: #fee;
    border: 1px solid #fcc;
    border-radius: 6px;
    margin-top: 16px;
    margin-bottom: 8px;
}

.login-error .error-icon {
    color: #dc2626;
    font-size: 18px;
    flex-shrink: 0;
}

.login-error .error-text {
    color: #dc2626;
    font-size: 14px;
    line-height: 1.4;
}

/* Success message */
.success-message {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background-color: #d1fae5;
    border: 1px solid #6ee7b7;
    border-radius: 6px;
    margin-top: 16px;
    margin-bottom: 8px;
}

.success-message .success-icon {
    color: #d07205;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.success-message .success-text {
    color: #d07205;
    font-size: 14px;
    line-height: 1.4;
}

/* Success screen styles */
.success-check-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.success-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 24px 0;
}

.success-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    text-align: center;
    margin: 0 0 32px 0;
}

.login-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background-color: #ec8306;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    margin-top: 8px;
}

.login-submit-btn:hover {
    background-color: #d07205;
}

.login-submit-btn:active {
    transform: scale(0.98);
}

.login-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}

.login-link {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.login-link:hover {
    color: #ec8306;
}

.login-footer {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 60px;
    margin-bottom: 60px;
}

/* Footer logo styling */
.footer-logo {
    max-width: 80px;
    width: auto;
    height: auto;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Legacy logo styles (keeping for backwards compatibility) */
.plancraft-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #333;
}

.plancraft-logo .logo-icon {
    font-size: 20px;
}

.plancraft-logo .logo-text {
    font-weight: 600;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.2s;
    font-size: 20px;
}

.cookie-banner:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .right-column {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
    }
    
    .content-wrapper {
        padding: 20px;
    }
    
    .project-start {
        flex-direction: column;
    }
    
    .project-illustration {
        width: 100%;
    }
    
    .page-header {
        padding: 20px;
    }
    
    .page-content {
        padding: 20px;
    }
    
    .contacts-table {
        font-size: 13px;
    }
    
    .contacts-table th,
    .contacts-table td {
        padding: 12px;
    }
    
    .contacts-table th.col-number,
    .contacts-table th.col-edited {
        display: none;
    }
    
    .contacts-table td.col-number,
    .contacts-table td.col-edited {
        display: none;
    }

    /* Login page responsive */
    .login-form-wrapper {
        padding: 32px 24px;
        margin: 40px 0;
    }

    .login-header h1 {
        font-size: 28px;
    }

    .back-link {
        top: 15px;
        left: 15px;
    }

    .login-footer {
        bottom: 20px;
    }
}
