* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #4CAF50;
    --primary-dark: #388E3C;
    --secondary: #FF9800;
    --light: #F5F5F5;
    --dark: #333;
    --gray: #757575;
    --white: #FFFFFF;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --critical: #ff6b6b;
    --critical-dark: #ff3838;
    --warning: #ff9f43;
    --warning-dark: #ff7f00;
    --info: #3498db;
    --info-dark: #2980b9;
    --success: #4caf50;
    --success-dark: #388e3c;
}

body {
    background-color: #f9f9f9;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* 渚ц竟鏍忔牱寮� */
.sidebar {
    width: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow);
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.logo i {
    font-size: 24px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 18px;
    font-weight: 600;
}

.menu {
    list-style: none;
}

.menu-item {
    margin: 5px 0;
}

.menu-item a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.menu-item a:hover, .menu-item.active a {
    background: rgba(255,255,255,0.1);
    color: white;
    border-left: 4px solid #fff;
}

.menu-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    font-size: 18px;
}

/* 涓诲唴瀹瑰尯鏍峰紡 */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: var(--white);
    padding: 15px 30px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

		/* 鎿嶄綔鍘嗗彶璁板綍鏍峰紡 */
        .operation-history {
            display: flex;
            align-items: center;
            color: #666;
            font-size: 14px;
            background: #f8f9fa;
            padding: 8px 15px;
            border-radius: 20px;
            border: 1px solid #e9ecef;
            max-width: 400px;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .operation-history:hover {
            background: #e9ecef;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .operation-history i {
            margin-right: 10px;
            color: #3498db;
        }
        
        #operationText {
            font-size: 13px;
            font-weight: 500;
            color: #495057;
        }
        .recent-operation {
            font-size: 14px;
            color: #666;
            padding: 8px 15px;
            background-color: #f8f9fa;
            border-radius: 4px;
            border-left: 3px solid #3498db;
            display: flex;
            align-items: center;
            gap: 10px;
            max-width: 500px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        
        .recent-operation i {
            color: #3498db;
            font-size: 16px;
        }
        
        .recent-operation span {
            font-weight: 500;
            color: #333;
            white-space: normal; /* 鍏佽鎹㈣ */
            word-wrap: break-word; /* 鍏佽鍗曡瘝鍐呮崲琛� */
        }
             
        @media (max-width: 1200px) {
            .recent-operation {
                max-width: 400px;
            }
        }
        
        @media (max-width: 768px) {
            .recent-operation {
                max-width: 300px;
                font-size: 12px;
            }
        }
.user-info {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.user-info img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--critical);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 鍐呭鍖烘牱寮� */
.content {
    padding: 30px;
    flex: 1;
    overflow-y: auto;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
}

/* 鎸夐挳鏍峰紡 */
.btn {
    padding: 10px 20px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    transition: all 0.3s;
}

.btn:hover {
    background-color: var(--primary-dark);
}

.btn i {
    margin-right: 5px;
}

.btn-secondary {
    background-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-primary {
    background-color: var(--info);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--info-dark);
}

/* 绛涢�夋爮鏍峰紡 */
.filter-bar {
    background-color: var(--white);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-select, .form-control {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: var(--white);
}

/* 棰勮鍗＄墖鏍峰紡 */
.alert-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.alert-card {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alert-card.critical {
    background: linear-gradient(135deg, var(--critical), var(--critical-dark));
}

.alert-card.warning {
    background: linear-gradient(135deg, var(--warning), var(--warning-dark));
}

.alert-card.total {
    background: linear-gradient(135deg, var(--info), var(--info-dark));
}

.alert-card.safe {
    background: linear-gradient(135deg, var(--success), var(--success-dark));
}

.alert-card-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.alert-card-content p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.alert-card-count {
    font-size: 48px;
    font-weight: bold;
}

/* 棰勮娑堟伅鏍峰紡 */
.alert-messages {
    margin-bottom: 30px;
}

.alert-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.alert-message.critical {
    background-color: #ffebee;
    border-left: 4px solid #ff5252;
    color: #c62828;
}

.alert-message.warning {
    background-color: #fff3e0;
    border-left: 4px solid #ff9800;
    color: #ef6c00;
}

.alert-message.success {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

.alert-message i {
    margin-right: 10px;
    font-size: 20px;
}

/* 棰勮淇℃伅鏍峰紡 */
.alert-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.alert-info h3 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.alert-info h3 i {
    margin-right: 10px;
}

.alert-info ul {
    margin-top: 10px;
    line-height: 1.6;
    padding-left: 20px;
}

.alert-info li {
    margin-bottom: 8px;
}

/* 琛ㄦ牸鏍峰紡 */
.table-container {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: var(--light);
    font-weight: 600;
    color: #555;
}

tr:hover {
    background-color: #f8f9fa;
}

.fruit-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

/* 鐘舵�佹爣绛� */
.status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.status.in-stock {
    background: #d4edda;
    color: #155724;
}

.status.low-stock {
    background: #fff3cd;
    color: #856404;
}

.status.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

/* 搴撳瓨杩涘害鏉� */
.stock-progress {
    width: 100%;
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 5px;
}

.stock-progress-bar {
    height: 100%;
    transition: width 0.3s ease;
}

.stock-progress-bar.critical {
    background-color: #ff5252;
}

.stock-progress-bar.warning {
    background-color: #ff9800;
}

.stock-progress-bar.safe {
    background-color: #4caf50;
}

/* 鎿嶄綔鎸夐挳 */
.action-btn {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    margin: 0 2px;
    border-radius: 3px;
    transition: color 0.3s;
}

.action-btn:hover {
    color: #333;
}

/* 鍒嗛〉鏍峰紡 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.pagination button {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background-color: var(--white);
    cursor: pointer;
    border-radius: 4px;
}

.pagination button.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.page-info {
    margin-left: 20px;
    color: #666;
    font-size: 14px;
}

/* 妯℃�佹鏍峰紡 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    border-radius: 10px;
    width: 500px;
    max-width: 90%;
    max-height: 85vh;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-30px);
    transition: transform 0.3s ease;
    position: relative;
    overflow-y: auto;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background-color: #f5f5f5;
    color: #333;
}

.modal-content h3 {
    margin: 0 0 25px 0;
    font-size: 20px;
    color: #333;
    font-weight: 600;
    padding-right: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-col {
    flex: 1;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.form-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.form-actions button[type="button"]:not(.btn) {
    background-color: #f5f5f5;
    color: #666;
}

.form-actions button[type="button"]:not(.btn):hover {
    background-color: #e0e0e0;
}

.form-actions .btn {
    background-color: var(--primary);
    color: white;
    min-width: 80px;
}

.form-actions .btn:hover {
    background-color: var(--primary-dark);
}

.form-actions .btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* 浠〃鐩樻牱寮� */
.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card-header h3 {
    font-size: 16px;
    color: var(--gray);
}

.card-header i {
    font-size: 24px;
    color: var(--primary);
}

.card-body h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.card-body p {
    color: var(--gray);
    font-size: 14px;
}

.card.orange {
    border-top: 4px solid var(--warning);
}

.card.green {
    border-top: 4px solid var(--primary);
}

.card.blue {
    border-top: 4px solid var(--info);
}

.card.purple {
    border-top: 4px solid #9C27B0;
}

/* ECharts 鍥捐〃瀹瑰櫒鏍峰紡 */
.charts-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.chart-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.chart-container.full-width {
    grid-column: 1 / -1;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.chart-header h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.chart-wrapper {
    position: relative;
    width: 100%;
}

/* 鍝嶅簲寮忚璁� */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
    }
    
    .menu {
        display: flex;
        overflow-x: auto;
    }
    
    .menu-item {
        border-left: none;
        border-bottom: 4px solid transparent;
        white-space: nowrap;
    }
    
    .menu-item.active {
        border-left: none;
        border-bottom: 4px solid #fff;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .search-bar {
        width: 200px;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-select, .form-control {
        width: 100%;
    }
    
    .alert-cards {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .charts-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .section-title > div {
        display: flex;
        gap: 10px;
    }
    
    .header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .search-bar {
        width: 100%;
    }
    
    /* 妯℃�佹鍦ㄧЩ鍔ㄨ澶囦笂鐨勪紭鍖� */
    .modal-content {
        width: 95%;
        padding: 20px;
        max-height: 90vh;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    table {
        display: block;
        overflow-x: auto;
    }
}

/* 鍔ㄧ敾鏁堟灉 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 鎵撳嵃鏍峰紡 */
@media print {
    .sidebar, .header, .btn {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }
    
    .chart-container {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* 瀵煎嚭鐩稿叧鏍峰紡 */
.radio-group label {
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.radio-group input[type="radio"] {
    margin-right: 8px;
}

/* 鍔犺浇鐘舵�� */
.chart-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    font-size: 14px;
}

/* 鎼滅储妗嗘牱寮忓寮� */
.search-bar {
    position: relative;
    transition: all 0.3s;
}

.search-bar:focus-within {
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

#searchInput {
    border:none;
    background: none;
    outline: none;
    width: 100%;
    padding-left: 5px;
    font-size: 14px;
}

/* 鑱旂郴鐢佃瘽楠岃瘉鐩稿叧鏍峰紡 */
.phone-input-container {
    position: relative;
}

.phone-validation-container {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    line-height: 1.2;
    font-size: 10px;
    animation: fadeIn 0.3s ease;
}

.phone-validation-icon {
    position: absolute;
    right: 10px;
    top: 38px;
    font-size: 16px;
    display: none;
}

.phone-validation-icon.valid {
    color: #4CAF50;
    display: inline-block;
}

.phone-validation-icon.invalid {
    color: #f44336;
    display: inline-block;
}

.phone-validation-message {
    font-size: 10px;
    margin-top: 5px;
    color: #f44336;
    display: none;
}

.phone-validation-message.error {
    color: #f44336;
    display: block;
}

.phone-validation-message.success {
    color: #4CAF50;
    display: block;
}

/* 杈撳叆妗嗛獙璇佺姸鎬佹牱寮� */
.form-control.valid {
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.form-control.invalid {
    border-color: #f44336;
    box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.2);
}

/* 妯℃�佹鏍峰紡璋冩暣锛岀‘淇濋獙璇佷俊鎭樉绀哄畬鏁� */
.form-group {
    position: relative;
}

/* 纭繚鑱旂郴鐢佃瘽杈撳叆妗嗘湁瓒冲鐨勭┖闂存樉绀洪獙璇佷俊鎭� */
.form-col .form-group {
    margin-bottom: 25px;
}
/* 棰勮鍗＄墖瀹瑰櫒 */
.alert-cards-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    gap: 15px;
}

/* 棰勮鍗＄墖閫氱敤鏍峰紡 */
.alert-card {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid;
}

/* 搴撳瓨鍛婃�ュ崱鐗� */
.alert-card-critical {
    background-color: #ffebee;
    border-left-color: #f44336;
}

/* 搴撳瓨杈冧綆鍗＄墖 */
.alert-card-warning {
    background-color: #fff3e0;
    border-left-color: #ff9800;
}

/* 棰勮鎬绘暟鍗＄墖 */
.alert-card-total {
    background-color: #e8f4fd;
    border-left-color: #2196f3;
}

/* 鍗＄墖鏍囬 */
.alert-card-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

/* 鍗＄墖鏁板瓧 */
.alert-card-number {
    font-size: 32px;
    font-weight: bold;
    margin: 5px 0;
}

/* 鍗＄墖鎻忚堪 */
.alert-card-desc {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* 搴撳瓨鍛婃�ユ暟瀛� */
.alert-card-critical .alert-card-number {
    color: #f44336;
}

/* 搴撳瓨杈冧綆鏁板瓧 */
.alert-card-warning .alert-card-number {
    color: #ff9800;
}

/* 棰勮鎬绘暟鏁板瓧 */
.alert-card-total .alert-card-number {
    color: #2196f3;
}

/* 鎻愮ず淇℃伅瀹瑰櫒 */
.alert-messages-container {
    margin: 30px 0 20px 0;
}

/* 鎻愮ず淇℃伅閫氱敤鏍峰紡 */
.alert-message {
    padding: 12px 16px;
    border-radius: 6px;
    border-left: 4px solid;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* 搴撳瓨鍛婃�ユ彁绀轰俊鎭� */
.alert-message-critical {
    background-color: #ffebee;
    border-left-color: #f44336;
}

/* 搴撳瓨杈冧綆鎻愮ず淇℃伅 */
.alert-message-warning {
    background-color: #fff3e0;
    border-left-color: #ff9800;
}

/* 鎻愮ず淇℃伅鍥炬爣 */
.alert-message-icon {
    font-weight: bold;
    margin-right: 8px;
}

/* 搴撳瓨鍛婃�ュ浘鏍� */
.alert-message-critical .alert-message-icon {
    color: #f44336;
}

/* 搴撳瓨杈冧綆鍥炬爣 */
.alert-message-warning .alert-message-icon {
    color: #ff9800;
}

/* 鎻愮ず淇℃伅鏂囨湰 */
.alert-message-text {
    font-weight: 500;
}

/* 搴撳瓨鍛婃�ユ枃鏈� */
.alert-message-critical .alert-message-text {
    color: #d32f2f;
}

/* 搴撳瓨杈冧綆鏂囨湰 */
.alert-message-warning .alert-message-text {
    color: #ef6c00;
}
/* 鍝嶅簲寮忚璁★細鍦ㄥ皬灞忓箷涓婂爢鍙犳樉绀� */
@media (max-width: 768px) {
    .alert-cards-container {
        flex-direction: column;
    }
    
    .alert-card {
        width: 100%;
        margin-bottom: 15px;
    }
}

  .form-section-title {
            margin: 15px 0 10px 0;
            padding-bottom: 5px;
            border-bottom: 1px solid #eee;
        }
        
        .form-section-title h4 {
            margin: 0;
            color: #333;
            font-weight: 500;
        }
        
        /* 纭繚妯℃�佹鏈夎冻澶熺殑瀹藉害鏄剧ず鎵�鏈夊瓧娈� */
        @media (min-width: 768px) {
            #newItemModal .modal-content {
                max-width: 700px;
            }
        }
        
        @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

	.main-footer {
            text-align: center;
            padding: 16px 20px;
            margin-top: 24px;
            border-top: 1px solid #e9ecef;
            color: #6c757d;
            font-size: 14px;
            background-color: #f8f9fa;
            width: 100%;
            box-sizing: border-box;
        }
        .main-footer a {
            color: #007bff;
            text-decoration: none;
            transition: opacity 0.2s;
        }
        .main-footer a:hover {
            text-decoration: underline;
            opacity: 0.8;
        }
        .main-footer p {
            margin: 0;
            line-height: 1.5;
        }