/* Right Content Ortak Stiller */

/* Module Header */
.module-header {
    background: var(--bg-primary);
    color: var(--text-color);
    padding: 20px 24px;
    margin: -20px -20px 20px -20px;
    border-radius: 0 0 12px 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
}

.module-header-title {
    margin: 0 0 8px 0;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.module-header-description {
    margin: 0;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.4;
}

/* Module Footer */
.module-footer {
    background: var(--bg-primary);
    color: var(--text-color);
    padding: 20px 24px;
    margin: 20px -20px -20px -20px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    border-top: 2px solid var(--primary-color);
}

body.dark-mode .module-footer {
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
}

.module-footer-title {
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.module-footer-content {
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.5;
}

.module-footer-paragraph {
    margin: 0 0 8px 0;
}

.module-footer-paragraph-last {
    margin: 0;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1000px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background: transparent;
    text-align: center; 
    margin: 0 auto;
    flex-direction: column;
    position: relative;
    min-height: 100vh;
    padding-top: 10%;
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.dark-mode-toggle:active {
    transform: scale(0.95);
}

.dark-mode-toggle svg {
    width: 24px;
    height: 24px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.dark-mode-toggle:hover svg {
    color: var(--primary-color);
    transform: rotate(20deg);
}

body.dark-mode .dark-mode-toggle {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
}

body.dark-mode .dark-mode-toggle svg {
    color: var(--primary-color);
}

/* Mobilde dark mode buton konumlandırması */
@media (max-width: 768px) {
    .dark-mode-toggle {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
    }
    
    .dark-mode-toggle svg {
        width: 22px;
        height: 22px;
    }
}

.content-wrapper h3 {
    color: var(--text-color);
    margin-bottom: 24px;
    text-align: center;
    font-size: 1.5rem;
}

/* Unified Container Styles */
.search-container {
    max-width: 600px;
    margin: 0 auto;
    overflow: visible;
    position: relative;
    margin-top: 0;
}

/* Mode Toggle Buttons */
.search-mode-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.mode-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-color);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.mode-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.mode-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.mode-btn.active:hover:not(:disabled) {
    background: var(--primary-hover);
    color: white;
}

.mode-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Groups */
.form-group {
    position: relative;
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Unified Search Box */
.search-box {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* Unified Input Styles */
.search-input,
.form-select,
.form-input {
    flex: 1;
    max-width: 800px;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-primary);
    color: var(--text-color);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.search-input:focus,
.form-select:focus,
.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-input:disabled,
.form-select:disabled,
.form-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: var(--bg-secondary);
}

/* Suggestion/Autocomplete Container */
.suggestion-container {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    border-top: none;
    background: var(--bg-primary);
    display: none;
    position: absolute;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 6px 6px;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s;
    color: var(--text-color);
}

.suggestion-item:hover {
    background-color: var(--bg-secondary);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item.exact-match {
    background-color: #d4edda !important;
    color: #155724;
    font-weight: bold;
}

body.dark-mode .suggestion-item.exact-match {
    background-color: rgba(34, 197, 94, 0.2) !important;
    color: #86efac;
}

/* Action Buttons */
.form-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.search-btn,
.hesapla-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.search-btn:hover:not(:disabled),
.hesapla-btn:hover:not(:disabled) {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.search-btn:disabled,
.hesapla-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    opacity: 0.6;
}

.temizle-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background: #9ca3af;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.temizle-btn:hover { 
    transform: translateY(-1px); 
}

.temizle-btn.active {
    background: #dc3545; /* Kırmızı */
}

.temizle-btn.active:hover {
    background: #c82333;
    transform: translateY(-1px);
}

/* Results Container */
.search-result,
.tapu-result {
    margin-top: 20px;
    overflow: visible;
    position: relative;
    z-index: 0;
}

.result-box {
    background: var(--bg-primary);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    overflow: visible;
    position: relative;
    height: auto;
    min-height: auto;
    max-height: none;
    z-index: 0;
    color: var(--text-color);
}

/* Loading States */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 120px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

body.dark-mode .loading-spinner {
    border-color: rgba(51, 65, 85, 0.3);
    border-top-color: var(--primary-color);
}

.results-container {
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}
.results-container h4 {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 1rem;
}
.all-results-list {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-secondary);
    padding: 10px;
    min-height: 120px;
    transition: box-shadow 0.2s;
    box-shadow: var(--shadow-sm);
}
.result-item {
    padding: 10px 12px;
    margin-bottom: 8px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.result-item:hover {
    background: var(--bg-tertiary);
    box-shadow: var(--shadow-md);
}
.result-item:last-child {
    margin-bottom: 0;
}
.result-name {
    color: var(--text-light);
    font-size: 0.97rem;
    line-height: 1.4;
}
.result-item strong {
    color: var(--primary-color);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.result-count {
    margin-top: 12px;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: bold;
}
.result-box {
    padding: 12px;
    border-radius: 6px;
    background: var(--bg-secondary);
    border: 1px solid var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.result-box.error {
    background: #fff4f4;
    border-color: #ffc1c1;
    color: #d32f2f;
}

body.dark-mode .result-box.error {
    background: rgba(211, 47, 47, 0.2);
    border-color: rgba(211, 47, 47, 0.5);
    color: #ff6b6b;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: var(--text-color);
    font-size: 1rem;
    margin: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* PDF Button Container */
#pdfCikarBtnContainer {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    display: none;
}

#pdfCikarBtn {
    padding: 10px 24px;
    font-size: 1rem;
}

/* Cezaevi Specific Results Styling */
.cezaevi-sonuc-container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-primary);
}

.cezaevi-sonuc-container h5{
    color: var(--primary-color);
    font-size: 1.2rem;
}

.il-grup {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--bg-primary);
}

.il-grup h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}

.kurum-detay {
    margin-bottom: 15px;
    padding: 10px;
    background-color: var(--bg-secondary);
    border-radius: 4px;
    page-break-inside: avoid;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.kurum-detay:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}

body.dark-mode .kurum-detay {
    background-color: rgba(51, 65, 85, 0.4);
}

.sonuc-satir {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.sonuc-satir:last-child {
    border-bottom: none;
}

.sonuc-satir .label {
    font-weight: bold;
    color: var(--text-color);
    min-width: 100px;
    text-align: left;
}

.sonuc-satir .value {
    color: var(--primary-color);
    flex: 1;
    text-align: right;
}

.sonuc-satir .value a {
    color: var(--primary-color);
    text-decoration: none;
    word-break: break-all;
}

.sonuc-satir .value a:hover {
    text-decoration: underline;
}

.uyari {
    text-align: left;
    margin-top: 10px;
    padding: 15px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 5px;
    font-size: 0.95rem;
    color: #333;
    overflow: visible;
    max-height: none;
    min-height: auto;
}

body.dark-mode .uyari {
    background-color: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.5);
    color: #ffc107;
}

.uyari p {
    margin: 0;
    color: #856404;
}

body.dark-mode .uyari p {
    color: #ffc107;
}

.uyari ul {
    margin: 0;
    padding-left: 20px;
    overflow: visible;
}

.uyari li {
    margin-bottom: 8px;
    line-height: 1.4;
    overflow: visible;
    word-wrap: break-word;
    color: #856404;
}

body.dark-mode .uyari li {
    color: #ffc107;
}

.uyari-baslik {
    color: #856404;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

body.dark-mode .uyari-baslik {
    color: #ffc107;
}

.uyari-aciklama {
    margin-top: 8px;
    font-size: 0.875rem;
}

/* Devlete Geçen Miras - Kırmızı vurgulu */
.sonuc-satir.devlete-gecen-miras {
    background-color: #f8f9fa;
    border-left: 4px solid #dc3545;
    font-weight: bold;
}

body.dark-mode .sonuc-satir.devlete-gecen-miras {
    background-color: rgba(220, 53, 69, 0.1);
    border-left-color: #dc3545;
}

.sonuc-satir.devlete-gecen-miras .label,
.sonuc-satir.devlete-gecen-miras .value {
    color: #dc3545;
    font-weight: bold;
}

body.dark-mode .sonuc-satir.devlete-gecen-miras .label,
body.dark-mode .sonuc-satir.devlete-gecen-miras .value {
    color: #f87171;
}

/* Torun Başlık Satırı */
.sonuc-satir-torun-baslik {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #dee2e6;
}

body.dark-mode .sonuc-satir-torun-baslik {
    border-top-color: var(--border-color);
}

.sonuc-satir-torun-baslik .label {
    color: #6c757d;
}

body.dark-mode .sonuc-satir-torun-baslik .label {
    color: #94a3b8;
}

.tapu-hesaplama-sonuc {
    background: var(--bg-primary);
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    padding: 20px;
    margin-bottom: 80px;
    position: relative;
    z-index: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
}

body.dark-mode .tapu-hesaplama-sonuc {
    background: var(--bg-primary);
    border-color: var(--primary-color);
    color: var(--text-color);
}

.tapu-hesaplama-sonuc h4 {
    color: var(--text-color);
}

body.dark-mode .tapu-hesaplama-sonuc h4 {
    color: var(--text-color);
}

.sonuc-detay {
    color: var(--text-color);
}

body.dark-mode .sonuc-detay {
    color: var(--text-color);
}

.sonuc-detay .label {
    color: var(--text-color);
}

body.dark-mode .sonuc-detay .label {
    color: var(--text-color);
}

.sonuc-detay .value {
    color: var(--text-color);
}

body.dark-mode .sonuc-detay .value {
    color: var(--text-color);
}

.hesaplama-detaylari {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 15px;
    color: var(--text-color);
}

body.dark-mode .hesaplama-detaylari {
    background: var(--bg-tertiary);
    color: var(--text-color);
}

.hesaplama-detaylari h5 {
    color: var(--text-color);
}

body.dark-mode .hesaplama-detaylari h5 {
    color: var(--text-color);
}

.detay-label {
    color: var(--text-color);
}

body.dark-mode .detay-label {
    color: var(--text-color);
}

.detay-value {
    color: var(--text-light);
}

body.dark-mode .detay-value {
    color: var(--text-light);
}

/* Query Limit Display */
.query-limit-info {
    margin-bottom: 20px;
    padding: 0;
}

.limit-display {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    background: #f8f9fa;
}

body.dark-mode .limit-display {
    border-color: var(--border-color);
    background: var(--bg-tertiary);
}

.limit-display.normal {
    margin-top: 20px;
    border-color: #28a745;
    background: #d4edda;
    color: #155724;
}

body.dark-mode .limit-display.normal {
    background: rgba(40, 167, 69, 0.15);
    border-color: rgba(40, 167, 69, 0.5);
    color: #4ade80;
}

.limit-display.low {
    margin-top: 20px;
    border-color: #ffc107;
    background: #fff3cd;
    color: #856404;
}

body.dark-mode .limit-display.low {
    background: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.5);
    color: #ffc107;
}

.limit-display.warning {
    margin-top: 20px;
    border-color: #dc3545;
    background: #f8d7da;
    color: #721c24;
}

body.dark-mode .limit-display.warning {
    background: rgba(220, 53, 69, 0.15);
    border-color: rgba(220, 53, 69, 0.5);
    color: #f87171;
}

.limit-icon {
    font-size: 1.1rem;
}

.limit-exceeded {
    font-weight: bold;
    color: #dc3545;
    margin-left: auto;
}

body.dark-mode .limit-exceeded {
    color: #f87171;
}

.limit-text {
    flex: 1;
}

.sonuc-satir.toplam {
    font-weight: bold;
    background: rgba(40,167,69,0.07);
    border-radius: 6px;
    margin: 12px 0;
    padding: 10px;
}

body.dark-mode .sonuc-satir.toplam {
    background: rgba(40, 167, 69, 0.15);
}

.sonuc-satir.toplam .value {
    color: #28a745 !important;
    font-weight: bold;
}

body.dark-mode .sonuc-satir.toplam .value {
    color: #4ade80 !important;
}

/* Sonuç değerleri için özel renkler */
.sonuc-satir .value[style*="color:#007bff"] {
    color: var(--primary-color) !important;
}

body.dark-mode .sonuc-satir .value[style*="color:#007bff"] {
    color: var(--primary-color) !important;
}

.sonuc-satir .value[style*="color:#d9534f"] {
    color: #dc3545 !important;
}

body.dark-mode .sonuc-satir .value[style*="color:#d9534f"] {
    color: #f87171 !important;
}

.sonuc-satir .value[style*="color:#28a745"] {
    color: #28a745 !important;
}

body.dark-mode .sonuc-satir .value[style*="color:#28a745"] {
    color: #4ade80 !important;
}

/* Sonuç satır border top */
.sonuc-satir-border-top {
    border-top: 2px solid var(--primary-color);
}

body.dark-mode .sonuc-satir-border-top {
    border-top-color: var(--primary-color);
}

/* Value renkleri */
.value-primary {
    color: var(--primary-color) !important;
}

body.dark-mode .value-primary {
    color: var(--primary-color) !important;
}

.value-danger {
    color: #dc3545 !important;
}

body.dark-mode .value-danger {
    color: #f87171 !important;
}

.value-success {
    color: #28a745 !important;
}

body.dark-mode .value-success {
    color: #4ade80 !important;
}

/* Uyarı info kutusu */
.uyari-info {
    background: #eef7ff;
    border: 1px solid #b3d7ff;
}

body.dark-mode .uyari-info {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.uyari-info p,
.uyari-info ul,
.uyari-info li {
    color: #004085;
}

body.dark-mode .uyari-info p,
body.dark-mode .uyari-info ul,
body.dark-mode .uyari-info li {
    color: #93c5fd;
}

/* Uyarı danger */
.uyari-danger {
    color: #dc3545 !important;
}

body.dark-mode .uyari-danger {
    color: #f87171 !important;
}

/* Sonuç detayları için responsive stiller */
@media (max-width: 1280px) {
    .sonuc-detay {
        text-align: center !important;
    }
    
    .sonuc-satir {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin-bottom: 1rem !important;
    }
    
    .sonuc-satir .label {
        text-align: center !important;
        display: block !important;
        min-width: auto !important;
        font-weight: 500 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .sonuc-satir .value {
        text-align: center !important;
        display: block !important;
        min-width: auto !important;
        font-weight: 600 !important;
    }
    
    .sonuc-satir.toplam {
        border-top: 2px solid #007bff !important;
        margin-top: 1.5rem !important;
        padding-top: 1.5rem !important;
    }
    
    .detay-satir {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin-bottom: 0.75rem !important;
    }
    
    .detay-label {
        text-align: center !important;
        font-weight: 500 !important;
        margin-bottom: 0.25rem !important;
    }
    
    .detay-value {
        text-align: center !important;
        color: #495057 !important;
        font-weight: 600 !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Module Header Mobil */
    .module-header {
        margin: -15px -15px 15px -15px;
        padding: 16px 20px;
        border-radius: 0 0 8px 8px;
    }
    
    .module-header-title {
        font-size: 1.5rem;
    }
    
    .module-header-description {
        font-size: 0.95rem;
    }
    
    /* Module Footer Mobil */
    .module-footer {
        margin: 15px -15px -15px -15px;
        padding: 16px 20px;
        border-radius: 8px 8px 0 0;
    }
    
    .module-footer-title {
        font-size: 1rem;
    }
    
    .module-footer-content {
        font-size: 0.8rem;
    }
    
    .content-wrapper {
        padding: 15px;
        overflow: visible;
        margin: 0 auto;
    }
    
    .search-container {
        padding: 0 10px;
        margin-top: 0;
    }
    
    .search-mode-buttons {
        gap: 0.25rem;
    }
    
    .mode-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .search-box {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .search-btn,
    .hesapla-btn,
    .temizle-btn {
        width: 100%;
    }
    
    .result-box {
        padding: 12px;
        margin: 10px auto 0;
        overflow: visible;
    }
    
    .sonuc-satir {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }
    
    .sonuc-satir .label {
        min-width: auto;
    }
    
    .sonuc-satir .value {
        text-align: left;
    }
    
    .right-content {
        width: 100% !important;
        padding: 1.5rem !important;
        min-height: calc(100vh - 120px);
        position: relative;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    
    .limit-display {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
}