/**
 * Rentago Hub - Main Stylesheet
 * Based on the example dashboard design
 */

/* Reset and Base Styles */
.rentago-full-width {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.rentago-full-width body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f5f5;
    overflow: hidden;
}

/* Dashboard Layout */
.rentago-dashboard {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* Success Notice */
.rentago-success-notice {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    border-radius: 8px;
    padding: 16px 24px;
    margin-bottom: 24px;
}

.rentago-success-notice-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rentago-success-notice-icon {
    font-size: 20px;
    color: #059669;
    font-weight: bold;
}

.rentago-success-notice-content span:last-child {
    color: #065f46;
    font-size: 14px;
    font-weight: 500;
}

/* Email Notice - Above Header */
.rentago-email-notice {
    background: #fef3c7;
    border-bottom: 1px solid #fde68a;
    padding: 12px 24px;
    z-index: 200;
}

.rentago-email-notice-content {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.rentago-email-notice-icon {
    font-size: 18px;
    color: #f59e0b;
}

.rentago-resend-email-btn {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: auto;
}

.rentago-resend-email-btn:hover {
    background: #d97706;
}

.rentago-resend-email-btn:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    opacity: 0.6;
}

.rentago-email-notice-message {
    width: 100%;
    padding: 8px 0 0;
    font-size: 13px;
    display: none;
}

.rentago-email-notice-message.show {
    display: block;
}

.rentago-email-notice-message.success {
    color: #059669;
}

.rentago-email-notice-message.error {
    color: #dc2626;
}

/* Header - Static */
.rentago-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: static;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.rentago-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rentago-sidebar-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    border-radius: 6px;
    transition: background 0.2s;
}

.rentago-sidebar-toggle:hover {
    background: #f3f4f6;
}

.rentago-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rentago-logo-icon {
    width: 40px;
    height: 40px;
    background: #20C997;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.rentago-logo-text {
    display: flex;
    flex-direction: column;
}

.rentago-logo-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.rentago-logo-subtitle {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.2;
}

.rentago-header-center {
    flex: 1;
    max-width: 600px;
    margin: 0 24px;
}

.rentago-search {
    position: relative;
    display: flex;
    align-items: center;
}

.rentago-search-icon {
    position: absolute;
    left: 12px;
    color: #9ca3af;
    pointer-events: none;
}

.rentago-search-input {
    width: 100%;
    padding: 10px 12px 10px 40px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    background: #f9fafb;
}

.rentago-search-input:focus {
    outline: none;
    border-color: #20C997;
    background: #ffffff;
}

.rentago-header-right {
    display: flex;
    align-items: center;
}

.rentago-header-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rentago-howdy {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.rentago-icon-grid,
.rentago-icon-pos {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.rentago-icon-grid {
    background: #f3f4f6;
    color: #374151;
}

.rentago-icon-pos {
    background: #8b5cf6;
    color: white;
}

/* Language Switcher in Header */
.rentago-language-switcher {
    position: relative;
}

.rentago-lang-btn {
    background: #f3f4f6;
    color: #374151;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 50px;
}

.rentago-lang-btn:hover {
    background: #e5e7eb;
}

.rentago-lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    min-width: 180px;
    display: none;
    z-index: 1000;
    overflow: hidden;
}

.rentago-lang-dropdown.show {
    display: block;
}

.rentago-lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.rentago-lang-option:hover {
    background: #f3f4f6;
}

.rentago-lang-option.active {
    background: #20C997;
    color: white;
}

.rentago-lang-flag {
    font-size: 20px;
}

.rentago-user-avatar img {
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

/* Dashboard Container */
.rentago-dashboard-container {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Sidebar - Static and Collapsible */
.rentago-sidebar {
    width: 240px;
    background: #28303D;
    color: white;
    display: flex;
    flex-direction: column;
    position: static;
    flex-shrink: 0;
    transition: width 0.3s ease;
    overflow: hidden;
}

.rentago-sidebar.collapsed {
    width: 60px !important;
}

.rentago-sidebar.collapsed .rentago-nav-title {
    display: none !important;
}

.rentago-sidebar.collapsed .rentago-nav-item span {
    display: none !important;
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.rentago-sidebar.collapsed .rentago-nav-item {
    justify-content: center !important;
    padding: 12px !important;
    min-width: auto;
}

.rentago-sidebar.collapsed .rentago-nav-item .rentago-nav-icon {
    margin: 0 !important;
}

.rentago-sidebar.collapsed .rentago-sidebar-footer {
    padding: 24px 12px !important;
}

.rentago-nav {
    flex: 1;
    padding: 24px 0;
    overflow-y: auto;
}

.rentago-nav-section {
    margin-bottom: 32px;
}

.rentago-nav-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    padding: 0 24px 12px;
    white-space: nowrap;
    overflow: hidden;
}

.rentago-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 14px;
    white-space: nowrap;
}

.rentago-nav-item:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.rentago-nav-item.active {
    background: #20C997;
    color: white;
}

.rentago-nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.rentago-sidebar-footer {
    padding: 24px;
    display: flex;
    justify-content: center;
}

.rentago-check-icon {
    width: 32px;
    height: 32px;
    background: #20C997;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* Main Content - Scrollable */
.rentago-main {
    flex: 1;
    padding: 32px;
    width: 100%;
    overflow-y: auto;
    background: #f5f5f5;
}

/* Form Layout - Two Columns (col-8 and col-4) */
.rentago-form-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: flex-start;
}

.rentago-form-main {
    min-width: 0;
}

/* Form Sidebar (Language Switcher) - Inside Form */
.rentago-form-sidebar {
    min-width: 0;
}

.rentago-lang-switcher-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.rentago-lang-switcher-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px;
}

.rentago-lang-switcher-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 24px;
}

.rentago-lang-switcher-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.rentago-lang-option-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    width: 100%;
}

.rentago-lang-option-btn:hover {
    border-color: #20C997;
    background: #f0fdfa;
}

.rentago-lang-option-btn.active {
    border-color: #20C997;
    background: #20C997;
    color: white;
}

.rentago-lang-info {
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.rentago-lang-info-text {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 12px;
    line-height: 1.6;
}

.rentago-lang-info-text strong {
    color: #1f2937;
    display: block;
    margin-bottom: 4px;
}

/* Profile Notice - Inside Main */
.rentago-profile-notice {
    background: #dbeafe;
    border: 1px solid #93c5fd;
    border-radius: 8px;
    padding: 16px 24px;
    margin-bottom: 24px;
}

.rentago-profile-notice-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.rentago-profile-notice-content span {
    color: #1e40af;
    font-size: 14px;
}

.rentago-main-header {
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
}

.rentago-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px;
}

.rentago-main-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

/* Stats Grid */
.rentago-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.rentago-stat-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.rentago-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: white;
}

.rentago-stat-icon-teal {
    background: #20C997;
}

.rentago-stat-icon-blue {
    background: #3b82f6;
}

.rentago-stat-icon-purple {
    background: #8b5cf6;
}

.rentago-stat-icon-orange {
    background: #f59e0b;
}

.rentago-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.rentago-stat-label {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 4px;
}

.rentago-stat-period {
    font-size: 12px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rentago-stat-arrow {
    color: #20C997;
}

/* Charts Grid */
.rentago-charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.rentago-chart-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.rentago-chart-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 24px;
}

.rentago-chart-container {
    height: 200px;
    position: relative;
}

/* Latest Grid */
.rentago-latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

.rentago-latest-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.rentago-latest-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 16px;
}

.rentago-latest-content {
    min-height: 100px;
}

.rentago-empty-state {
    text-align: center;
    padding: 48px 24px;
    color: #9ca3af;
}

/* Auth Pages */
.rentago-auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 24px;
}

.rentago-auth-container {
    background: white;
    border-radius: 12px;
    padding: 48px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.rentago-auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.rentago-auth-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px;
}

.rentago-auth-header p {
    color: #6b7280;
    margin: 0;
}

/* Forms */
.rentago-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.rentago-form-group input,
.rentago-form-group textarea,
.rentago-form-group select {
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.rentago-form-group input:focus,
.rentago-form-group textarea:focus,
.rentago-form-group select:focus {
    outline: none;
    border-color: #20C997;
    box-shadow: 0 0 0 3px rgba(32,201,151,0.1);
}

.rentago-form-help {
    font-size: 12px;
    color: #6b7280;
}

.rentago-form-errors {
    padding: 12px;
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #991b1b;
    font-size: 14px;
    display: none;
}

.rentago-form-errors.show {
    display: block;
}

.rentago-form-errors ul {
    margin: 0;
    padding-left: 20px;
}

.rentago-checkbox-label,
.rentago-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.rentago-radio-group {
    display: flex;
    gap: 24px;
}

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

.rentago-form-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.rentago-form-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.rentago-person-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Buttons */
.rentago-btn-primary,
.rentago-btn-secondary,
.rentago-btn-small {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.rentago-btn-primary {
    background: #20C997;
    color: white;
}

.rentago-btn-primary:hover {
    background: #1ab386;
}

.rentago-btn-secondary {
    background: #e5e7eb;
    color: #374151;
}

.rentago-btn-secondary:hover {
    background: #d1d5db;
}

.rentago-btn-small {
    padding: 6px 12px;
    font-size: 12px;
}

.rentago-btn-danger {
    background: #ef4444;
    color: white;
}

.rentago-btn-danger:hover {
    background: #dc2626;
}

.rentago-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

/* Tables */
.rentago-ads-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.rentago-ads-table thead {
    background: #f9fafb;
}

.rentago-ads-table th {
    padding: 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rentago-ads-table td {
    padding: 16px;
    border-top: 1px solid #e5e7eb;
    font-size: 14px;
    color: #374151;
}

.rentago-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
}

.rentago-status-draft {
    background: #fef3c7;
    color: #92400e;
}

.rentago-status-published {
    background: #d1fae5;
    color: #065f46;
}

/* Profile Form */
.rentago-profile-form {
    width: 100%;
}

/* Profile Sections */
.rentago-profile-section {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.rentago-profile-section-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e5e7eb;
}

.rentago-profile-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rentago-section-icon {
    font-size: 20px;
    color: #20C997;
    width: 24px;
    text-align: center;
}

.rentago-profile-section-description {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.rentago-form-section-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Two Column Layout */
.rentago-form-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

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

.rentago-form-group-full {
    grid-column: 1 / -1;
}

/* Address Fields */
.rentago-address-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.rentago-address-row .rentago-form-group {
    margin: 0;
}

/* Price Fields */
.rentago-price-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.rentago-price-row .rentago-form-group {
    margin: 0;
}

/* Modal */
.rentago-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.rentago-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.rentago-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.rentago-modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

.rentago-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

.rentago-modal-close:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.rentago-modal .rentago-form {
    padding: 24px;
}

.rentago-modal .rentago-lang-switcher-card {
    margin-top: 24px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.rentago-required {
    color: #ef4444;
    margin-left: 4px;
}

.rentago-field-help {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 6px;
    font-style: italic;
}

/* Logo Upload */
.rentago-logo-upload {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rentago-logo-preview {
    width: 200px;
    height: 200px;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #f9fafb;
}

.rentago-logo-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.rentago-logo-placeholder {
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
    padding: 20px;
}

.rentago-remove-logo {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
    padding: 0;
}

.rentago-remove-logo i {
    font-size: 14px;
}

.rentago-remove-logo:hover {
    background: #ef4444;
    transform: scale(1.1);
}

.rentago-upload-logo-btn {
    width: auto;
    align-self: flex-start;
}

/* Social Media Grid */
.rentago-social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.rentago-social-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rentago-social-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 4px;
}

.rentago-social-icon {
    font-size: 16px;
    color: #6b7280;
    width: 20px;
    text-align: center;
}

.rentago-social-input input {
    width: 100%;
}

/* Ad Form */

/* Responsive */
@media (max-width: 1024px) {
    .rentago-sidebar {
        width: 200px;
    }
    
    .rentago-sidebar.collapsed {
        width: 50px;
    }
    
    .rentago-charts-grid,
    .rentago-latest-grid {
        grid-template-columns: 1fr;
    }
    
    .rentago-form-layout {
        grid-template-columns: 1fr;
    }
    
    .rentago-form-sidebar {
        order: -1;
    }
    
    .rentago-form-two-columns {
        grid-template-columns: 1fr;
    }
    
    .rentago-address-row {
        grid-template-columns: 1fr;
    }
    
    .rentago-price-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .rentago-dashboard-container {
        flex-direction: column;
    }
    
    .rentago-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    
    .rentago-sidebar.collapsed {
        width: 100%;
    }
    
    .rentago-header {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .rentago-header-center {
        order: 3;
        width: 100%;
        margin: 0;
    }
    
    .rentago-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .rentago-form-row {
        grid-template-columns: 1fr;
    }
    
    .rentago-howdy {
        display: none;
    }
}
