/* Closed Deals Section */
.closed-deals-container {
    display: grid;
    gap: 20px;
}

.deal-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
}ac

.deal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.deal-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.deal-date {
    color: #666;
    font-size: 0.9rem;
}

.deal-details {
    margin-bottom: 15px;
}

.deal-amount {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2e7d32;
    font-weight: bold;
}

.deal-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.deal-actions .action-button {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.deal-actions .action-button.secondary {
    background: #f5f5f5;
    color: #333;
}

.deal-actions .action-button.secondary:hover {
    background: #e0e0e0;
}
.user-menu a {
    display: inline-block;
    color: white;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 50%;
}

.user-menu a:hover {
    background-color: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.user-menu i {
    vertical-align: middle;
}
/* Profile Section Layout - Flexbox Version */
.profile-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.form-card {
    flex: 1;
    max-width: 400px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
    
    margin-bottom: 30px;
    box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .profile-section {
        flex-direction: column;
    }
    .form-card {
        min-width: 100%;
    }
}
/* User Dashboard Styles */
.user-sidebar {
    width: 280px;
    padding: 20px;
    background-color: light-grey;
    color: black;
}

.user-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.user-profile {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.user-avatar.large {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin: 0 auto 15px;
    background-color: #3498db;
}

.user-nav {
    display: flex;
    flex-direction: column;
}

.nav-link {
    color: black;
    padding: 12px 15px;
    margin-bottom: 5px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-link2 {
    color: black;
    padding: 12px 15px;
    margin-bottom: 5px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-link2:hover {
    background-color: rgba(255,0,0,0.1);
    color: grey;
}
.nav-link:hover {
    background-color: rgba(0,0,255,0.1);
    color: grey;
}

.nav-link.active {
    background-color: #3498db;
    color: white;
}

.nav-link i {
    width: 20px;
    text-align: center;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
    width:100%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.section-header h2 {
    margin: 0;
    color: #2c3e50;
}


.form-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.2rem;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.data-table th, 
.data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.data-table th {
    background-color: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.data-table tr:hover td {
    background-color: #f8f9fa;
}

.property-link {
    color: #2c3e50;
    font-weight: 600;
    text-decoration: none;
}

.property-link:hover {
    text-decoration: underline;
}

.property-address {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 5px;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-badge.sold {
    background-color: #f8d7da;
    color: #721c24;
}

.status-badge.accepted {
    background-color: #cce5ff;
    color: #004085;
}

.status-badge.rejected {
    background-color: #f8d7da;
    color: #721c24;
}

.actions {
    gap: 10px;
}

.action-icon {
    color: #7f8c8d;
    font-size: 1rem;
    transition: color 0.3s;
}

.action-icon:hover {
    color: #3498db;
}

.empty-message {
    padding: 30px;
    text-align: center;
    color: #7f8c8d;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Offer Card Styles */
.offer-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px;
    margin-bottom: 20px;
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.offer-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.offer-header h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.offer-header h3 a:hover {
    text-decoration: underline;
}

.offer-date {
    font-size: 0.85rem;
    color: #7f8c8d;
}

.offer-details {
    margin-bottom: 15px;
}

.offer-amount {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.offer-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.offer-message {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.offer-message p {
    margin: 10px 0 0;
}

.offer-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.inline-form {
    display: inline;
}

.action-button.small {
    padding: 8px 15px;
    font-size: 0.85rem;
}

.action-button.success {
    background-color: #28a745;
}

.action-button.success:hover {
    background-color: #218838;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .user-sidebar {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }
    
    .user-sidebar {
        width: 100%;
        order: 2;
    }
    
    .user-content {
        order: 1;
    }
    
    .offer-meta {
        flex-direction: column;
        gap: 10px;
    }
}.filter-container {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.filter-toggle {
    position: fixed; /* Changed from absolute to fixed */
    left: 10px;
    bottom: 10px;
    padding: 8px 12px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000; /* Higher than filter container */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.filter-toggle:hover {
    background-color: #e9ecef;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.filter-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
}

.filter-panel.active {
    max-height: 1000px; /* Adjust based on your content */
}

.filter-section {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.filter-section h3 {
    margin: 0 0 10px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-section h3 i {
    width: 20px;
}

.filter-content {
    padding-left: 28px; /* Align with icon */
}

.filter-option {
    margin-bottom: 10px;
}

.filter-option:last-child {
    margin-bottom: 0;
}

.filter-actions {
    padding: 15px;
    display: flex;
    gap: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .filter-actions {
        flex-direction: column;
    }
    
    .action-button {
        width: 100%;
    }
}
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #f5f7fa;
    color: #333;
}

/* Top Bar Styles */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background-color: #2c3e50;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration:none;
}

.search-bar {
    flex-grow: 1;
    margin: 0 20px;
    max-width: 500px;
}

.search-bar input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 25px;
    border: none;
    font-size: 0.9rem;
    outline: none;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Main Container Styles */
.main-container {
    display: flex;
    flex-grow: 1;
    overflow: hidden;
}

/* Filter Panel Styles */
.filter-panel {
    width: 300px;
    padding: 20px;
    background-color: white;
    border-right: 1px solid #e0e0e0;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.filter-section {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.filter-section h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-option {
    margin-bottom: 12px;
}

.filter-option label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.85rem;
    color: #7f8c8d;
}

select, input[type="range"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    font-size: 0.9rem;
}

input[type="range"] {
    padding: 0;
    height: 6px;
    -webkit-appearance: none;
    background: #e0e0e0;
    border-radius: 3px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #3498db;
    border-radius: 50%;
    cursor: pointer;
}

.range-value {
    font-weight: bold;
    color: #2c3e50;
}

.action-button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.actions-button{
    background-color: pink;
}
.action-button.prop{
    width:300px;
}
.action-button:hover {
    background-color: #2980b9;
}

.action-button.secondary {
    background-color: #95a5a6;
}

.action-button.secondary:hover {
    background-color: #7f8c8d;
}

/* Content Area Styles */
.content-area {
    flex-grow: 1;
    display: flex;
    overflow: hidden;
}

.map-container {
    flex: 2;
    position: relative;
}

#map {
    height: 100%;
    width: 100%;
}

.properties-grid {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background-color: #fff;
    border-left: 1px solid #e0e0e0;
}

.properties-title {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.2rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.properties-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.property-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    background-color: white;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.property-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.property-price {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.property-details {
    padding: 15px;
}

.property-title {
    font-weight: bold;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 1.1rem;
}

.property-address {
    color: #7f8c8d;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.property-features {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #34495e;
}

.feature {
    display: flex;
    align-items: center;
    gap: 5px;
}

.feature i {
    color: #3498db;
    font-size: 0.9rem;
}
/* Auth Page Styles */
.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f7fa;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 400px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

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

.auth-header h1 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.auth-header p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.auth-form {
    margin-bottom: 20px;
}

.auth-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.auth-footer a {
    color: #3498db;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-footer p {
    margin: 8px 0;
}
/* Registration Page Specific Styles */
.register-container {
    max-width: 800px;
}

.multi-step-form {
    position: relative;
    min-height: 400px;
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

.step-title {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.step-description {
    color: #7f8c8d;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.plan-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.plan-option {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.plan-option.selected {
    border-color: #3498db;
    background-color: #f8fafc;
}

.plan-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.plan-option h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.plan-price span {
    font-size: 1rem;
    font-weight: normal;
    color: #7f8c8d;
}

.plan-savings {
    color: #27ae60;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.plan-features li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #34495e;
    position: relative;
    padding-left: 20px;
}

.plan-features li:before {
    content: "✓";
    color: #27ae60;
    position: absolute;
    left: 0;
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.payment-method {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.payment-method.selected {
    border-color: #3498db;
    background-color: #f8fafc;
}

.payment-method input[type="radio"] {
    display: none;
}

.payment-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.card-details {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 6px;
    background-color: #f9f9f9;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.terms-group {
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
}

.terms-group input {
    margin-right: 10px;
    margin-top: 3px;
}

.terms-group label {
    font-size: 0.85rem;
    color: #7f8c8d;
    line-height: 1.5;
}

.terms-group a {
    color: #3498db;
}

.trial-notice {
    background-color: #e3f2fd;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.trial-notice h3 {
    color: #1976d2;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.trial-notice p {
    margin: 0;
    font-size: 0.9rem;
    color: #0d47a1;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 5px;
}

.form-group.has-error input {
    border-color: #e74c3c;
}

.hidden {
    display: none;
}

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

@media (max-width: 768px) {
    .plan-options {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    color: #2c3e50;
    font-size: 1.3rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #7f8c8d;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #e74c3c;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.9rem;
}

.form-group input, 
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 25px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .properties-grid {
        flex: 1;
    }
}

@media (max-width: 992px) {
    .content-area {
        flex-direction: column;
    }
    
    .map-container {
        height: 50vh;
    }
    
    .properties-grid {
        flex: none;
        height: 50vh;
    }
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }
    
    .filter-panel {
        width: 100%;
        max-height: none;
        padding: 15px;
    }
    
    .content-area {
        flex-direction: column;
    }
    
    .map-container {
        height: 60vh;
    }
    
    .properties-grid {
        height: 40vh;
    }
    
    .top-bar {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px;
    }
    
    .search-bar {
        order: 3;
        margin: 10px 0 0;
        width: 100%;
    }
}
/* Property Detail Page Styles */
.property-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.property-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    height: 100px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    color: #555;
}

.property-meta i {
    margin-right: 5px;
    color: #3498db;
}

.property-description {
    line-height: 1.6;
}

.property-features ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
}

.property-features li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.offer-section h2 {
    margin-top: 0;
}

.alert {
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
}

@media (max-width: 768px) {
    .property-detail-container {
        grid-template-columns: 1fr;
    }
    
    .main-image {
        height: 300px;
    }
}
/* Map Marker Styles */
.leaflet-marker-icon {
    filter: hue-rotate(180deg) brightness(1.2);
}

/* Loading Spinner */
.loading-spinner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.form-hint {
    display: block;
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-top: 5px;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
