/* =================================================================== */
/* === STYLE.CSS - PHIÊN BẢN HOÀN CHỈNH & RESPONSIVE              === */
/* =================================================================== */

/* --- 1. THIẾT LẬP CƠ BẢN & LAYOUT CHÍNH --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa;
    overflow: hidden; /* Ngăn cuộn ở body */
}

.page-container {
    display: flex;
    height: 100vh;
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto; /* Cho phép chỉ vùng nội dung cuộn */
}

main {
    padding: 30px;
}


/* --- 2. SIDEBAR (THANH ĐIỀU HƯỚNG BÊN TRÁI) --- */
.sidebar {
    width: 260px;
    background-color: #204384;
    color: #ecf0f1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: margin-left 0.3s ease; /* Hiệu ứng trượt ra/vào */
}

.sidebar .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #3a5a9a;
}

.sidebar .logo img {
    display: block;
    max-width: 80%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.sidebar .logo img:hover {
    transform: scale(1.05);
}

.sidebar nav a {
    display: flex;
    align-items: center;
    color: #ecf0f1;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.sidebar nav a i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.sidebar nav a:hover {
    background-color: #3a5a9a;
    color: #ffffff;
}

.sidebar nav a.active {
    background-color: #f0ad4e;
    color: #333;
    font-weight: bold;
}

.sidebar .sidebar-footer {
    margin-top: auto;
    font-size: 0.8em;
    text-align: center;
    color: #a4b0be;
    padding-top: 20px;
}


/* --- 3. HEADER (TIÊU ĐỀ TRANG) --- */
.header {
    padding: 20px 30px;
    background-color: #ffffff;
    border-bottom: 1px solid #e7e7e7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.header h1 {
    font-size: 24px;
    color: #333;
    margin: 0;
}

.user-area {
    display: flex;
    align-items: center;
}

.user-area a {
    color: #204384;
    text-decoration: none;
    font-weight: 500;
}

.user-area a i {
    margin-right: 8px;
}

.logout-link {
    color: #e74c3c !important;
    font-weight: bold !important;
}

/* Nút Hamburger Menu cho mobile */
#menu-toggle {
    display: none; /* Mặc định ẩn trên desktop */
    background: none;
    border: none;
    font-size: 24px;
    color: #204384;
    cursor: pointer;
}


/* --- 4. FORM CHUNG & CÁC THÀNH PHẦN --- */
.form-wrapper, .form-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
}

.content-header {
    margin-bottom: 25px;
}

.content-header h1 {
    font-size: 1.8rem;
    color: #2a3f54;
    margin-top: 0;
    margin-bottom: 8px;
}

.content-header p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label, label {
    display: block;
    font-weight: 600;
    color: #344767;
    margin-bottom: 8px;
}

input[type="text"],
input[type="password"],
input[type="url"],
textarea,
select {
    display: block;
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 6px;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

input:focus, textarea:focus, select:focus {
    border-color: #3c8dbc;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(60, 141, 188, 0.2);
}

textarea {
    height: 120px;
    resize: vertical;
}

.btn-submit, input[type="submit"] {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #2a3f54;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-submit:hover, input[type="submit"]:hover {
    background-color: #3b5572;
}


/* --- 5. DANH SÁCH WEBSITE (LINKWEB.PHP) --- */
.website-list-container {
    margin-top: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.list-header h2 {
    margin: 0;
    font-size: 1.25rem;
}

.website-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.website-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.website-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.website-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.website-favicon img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #eee;
}

.website-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.website-url {
    font-weight: 600;
    color: #0056b3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.website-user {
    font-size: 0.9rem;
    color: #6c757d;
}

.password-wrapper {
    display: flex;
    align-items: center;
    background-color: #f1f3f5;
    border-radius: 5px;
    padding-left: 10px;
}

.password-wrapper input {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 8px;
    font-family: monospace;
}

.password-wrapper .icon-prefix {
    color: #868e96;
}

.btn-icon {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 8px;
}

.website-actions {
    position: absolute;
    top: 10px;
    right: 10px;
}

.btn-delete {
    background: none;
    border: none;
    color: #adb5bd;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    transition: color 0.2s, background-color 0.2s;
}

.btn-delete:hover {
    color: #dc3545;
    background-color: #fbebee;
}

.btn-clear-all {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}


/* --- 6. PHẦN CATEGORY --- */
.category-section {
    margin: 20px 0;
}
.category-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}
.category-controls select {
    flex-grow: 1;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 12px top 50%;
    background-size: 10px auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.category-controls button {
    padding: 12px 20px;
    font-weight: 600;
    color: #fff;
    background-color: #2a3f54;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
}
.status-message {
    display: block;
    margin-top: 8px;
    font-size: 0.85em;
    color: #4CAF50;
}


/* --- 7. TRANG LỊCH SỬ (HISTORY.PHP) --- */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.card .icon {
    font-size: 24px;
    margin-bottom: 15px;
    color: #204384;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: #e8f0fe;
}

.card h3 {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.card p {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.filter-bar {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.filter-bar form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.filter-bar select {
    flex-grow: 1; /* Cho phép select co giãn */
}

.filter-bar button {
    padding: 12px 20px;
    background-color: #204384;
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.reset-filter {
    text-decoration: none;
    color: #666;
    font-size: 1rem;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.reset-filter:hover {
    background-color: #f1f1f1;
}

.data-table-wrapper {
    background: #fff;
    border-radius: 8px;
    overflow-x: auto; /* Cho phép cuộn ngang trên mobile */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th, .data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap; /* Ngăn text xuống dòng */
    vertical-align: middle;
}

.data-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.data-table td a {
    color: #204384;
    text-decoration: none;
    font-weight: 500;
}

.data-table td a:hover {
    text-decoration: underline;
}

.data-table .action-icon {
    font-size: 16px;
}

.no-data {
    text-align: center;
    padding: 40px !important;
    color: #777;
    font-style: italic;
}


/* =================================================================== */
/* === 8. RESPONSIVE MEDIA QUERIES                                 === */
/* =================================================================== */

/* --- CHO TABLET & CÁC MÀN HÌNH NHỎ HƠN (<= 992px) --- */
@media (max-width: 992px) {
    .sidebar {
        width: 220px; /* Thu nhỏ sidebar một chút */
    }
    .header h1 {
        font-size: 20px; /* Giảm kích thước tiêu đề */
    }
    main {
        padding: 20px; /* Giảm padding */
    }
    .website-grid {
        /* Đảm bảo chỉ có 1 cột trên tablet */
        grid-template-columns: 1fr;
    }
}


/* --- CHO ĐIỆN THOẠI DI ĐỘNG (<= 768px) --- */
@media (max-width: 768px) {
    .page-container {
        /* Quan trọng: Cho phép sidebar ẩn/hiện */
        position: relative;
        overflow-x: hidden;
    }

    .sidebar {
        position: absolute; /* Đặt sidebar lên trên cùng */
        top: 0;
        left: 0;
        height: 100%;
        z-index: 1000; /* Đảm bảo nó nằm trên nội dung chính */
        margin-left: -260px; /* Ẩn sidebar ra ngoài màn hình */
        box-shadow: 5px 0px 15px rgba(0,0,0,0.2);
    }

    /* Lớp .sidebar-visible sẽ được thêm bằng JS để hiện sidebar */
    .page-container.sidebar-visible .sidebar {
        margin-left: 0;
    }

    .main-content {
        width: 100%;
    }

    .header {
        padding: 15px;
    }

    .header h1 {
        font-size: 18px;
    }

    #menu-toggle {
        display: block; /* Hiện nút hamburger */
    }

    .user-area .logout-text {
        display: none; /* Ẩn chữ "Đăng xuất", chỉ giữ lại icon */
    }

    main {
        padding: 15px;
    }

    .form-wrapper, .form-container, .website-list-container {
        padding: 20px;
    }

    .category-controls {
        flex-direction: column; /* Xếp nút "Tải" xuống dưới ô chọn */
        align-items: stretch; /* Kéo dài các item cho bằng nhau */
    }

    .filter-bar form {
        flex-direction: column;
        align-items: stretch;
    }

    .stat-cards {
        grid-template-columns: 1fr; /* Mỗi card một hàng */
    }
}
/* =================================================================== */
/* === GIAO DIỆN NÂNG CẤP - TRANG QUẢN LÝ TÀI KHOẢN             === */
/* =================================================================== */

/* --- FORM THÊM MỚI --- */
.form-wrapper-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    margin-bottom: 40px;
}

.form-header {
    text-align: left;
    margin-bottom: 25px;
}

.form-header h3 {
    font-size: 1.5rem;
    color: #2a3f54;
    margin: 0 0 5px 0;
}

.form-header p {
    color: #6c757d;
}

.input-group {
    position: relative;
}

.input-group .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
}

.input-group input {
    padding-left: 45px;
}

.btn-submit-main {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(45deg, #204384, #3a5a9a);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(32, 67, 132, 0.2);
}

.btn-submit-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 67, 132, 0.3);
}


/* --- DANH SÁCH TÀI KHOẢN --- */
.website-list-container-v2 {
    background: transparent; /* Không cần nền vì card đã có nền */
}

.website-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

/* --- GIAO DIỆN CARD MỚI --- */
.website-card-v2 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}
.website-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.card-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

.website-favicon-v2 {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.website-url-link {
    font-weight: 600;
    color: #2a3f54;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.website-url-link:hover {
    text-decoration: underline;
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #495057;
}

.info-icon {
    color: #868e96;
    width: 16px;
    text-align: center;
}

.password-row {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 2px 8px;
}
.password-row input {
    background: transparent;
    border: none;
    padding: 8px 5px;
    flex-grow: 1;
    font-family: monospace;
}
.password-row input:focus {
    outline: none;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.btn-delete-card, .btn-use-account {
    flex-grow: 1;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-delete-card {
    background-color: #f1f3f5;
    color: #495057;
    border-color: #dee2e6;
}
.btn-delete-card:hover {
    background-color: #e9ecef;
    color: #212529;
}

.btn-use-account {
    background-color: #204384;
    color: #fff;
}
.btn-use-account:hover {
    background-color: #2a52a5;
}


/* --- GIAO DIỆN KHI DANH SÁCH RỖNG --- */
.empty-state {
    background: #fff;
    border: 2px dashed #e9ecef;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: #6c757d;
}

.empty-state-icon {
    font-size: 3rem;
    color: #ced4da;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: #495057;
    margin-bottom: 10px;
}
/* --- Login Page Styles --- */
.login-page-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
}
.login-container { padding: 20px; }
.login-box { width: 100%; max-width: 420px; background-color: #ffffff; padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); text-align: center; }
.login-logo { margin-bottom: 10px; }
.login-logo a { display: inline-flex; align-items: center; text-decoration: none; color: #204384; }
.login-logo .fa-robot { font-size: 32px; margin-right: 10px; }
.login-logo h2 { font-size: 28px; font-weight: 700; }
.login-subtitle { margin-bottom: 30px; color: #6c757d; font-size: 16px; }
.input-group { position: relative; margin-bottom: 20px; }
.input-group i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #adb5bd; }
.input-group input { width: 100%; padding: 12px 15px 12px 45px; border: 1px solid #ced4da; border-radius: 8px; font-size: 16px; background-color: #f8f9fa; }
.input-group input:focus { background-color: #fff; border-color: #204384; box-shadow: 0 0 0 2px rgba(32, 67, 132, 0.2); }
.options { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; font-size: 14px; }
.remember-me { display: flex; align-items: center; color: #495057; cursor: pointer; }
.remember-me input { margin-right: 8px; }
.forgot-password { color: #204384; text-decoration: none; }
.forgot-password:hover { text-decoration: underline; }
.btn-login { width: 100%; padding: 14px; background-color: #204384; color: white; border: none; border-radius: 8px; font-size: 18px; font-weight: 600; cursor: pointer; transition: background-color 0.3s ease; }
.btn-login:hover { background-color: #1a356a; }
.divider { display: flex; align-items: center; text-align: center; margin: 30px 0; color: #adb5bd; font-size: 14px; font-weight: 500; }
.divider::before, .divider::after { content: ''; flex: 1; border-bottom: 1px solid #dee2e6; }
.divider:not(:empty)::before { margin-right: .5em; }
.divider:not(:empty)::after { margin-left: .5em; }
.social-login .social-btn { display: flex; align-items: center; justify-content: center; width: 100%; padding: 12px; border-radius: 8px; margin-bottom: 15px; text-decoration: none; font-size: 16px; font-weight: 500; transition: opacity 0.3s ease; }
.social-login .social-btn i { margin-right: 12px; font-size: 20px; }
.social-login .social-btn:hover { opacity: 0.9; }
.social-btn.google { background-color: #fff; border: 1px solid #ced4da; color: #495057; }
.social-btn.facebook { background-color: #1877F2; color: #fff; }
.signup-link { margin-top: 20px; font-size: 15px; color: #495057; }
.signup-link a { color: #204384; font-weight: 600; text-decoration: none; }
.signup-link a:hover { text-decoration: underline; }

/* Style cho các thông báo */
.alert { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 8px; text-align: left; }
.alert-danger { color: #721c24; background-color: #f8d7da; border-color: #f5c6cb; }
.alert-success { color: #155724; background-color: #d4edda; border-color: #c3e6cb; }

/* === CSS CHO TRANG KẾ HOẠCH SEO === */

/* Thay thế .form-container bằng một class chung hơn cho các trang nội dung */
.content-container {
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.table-actions {
    margin-bottom: 20px;
    text-align: right;
}

.add-new-btn {
    background-color: var(--primary-color); /* Sử dụng biến màu primary của bạn */
    color: #204384;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.add-new-btn:hover {
    background-color: #e6a00c; /* Màu đậm hơn một chút */
}

.add-new-btn i {
    margin-right: 8px;
}

.table-wrapper {
    overflow-x: auto; /* Cho phép cuộn ngang trên thiết bị di động */
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th, .data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.data-table thead {
    background-color: #f8f9fa;
}

.data-table th {
    font-weight: 600;
    color: #555;
    font-size: 14px;
    text-transform: uppercase;
}

.data-table tbody tr:hover {
    background-color: #fcfcfc;
}

.data-table td a {
    color: var(--secondary-color); /* Sử dụng biến màu secondary nếu có, hoặc màu xanh mặc định */
    text-decoration: none;
    font-weight: 500;
}

.data-table td a:hover {
    text-decoration: underline;
}

/* CSS cho các nhãn trạng thái */
.status-badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    display: inline-block;
}

.status-badge.status-mới { background-color: #007bff; }
.status-badge.status-đang-viết { background-color: #ffc107; color: #333; }
.status-badge.status-chờ-duyệt { background-color: #fd7e14; }
.status-badge.status-hoàn-thành { background-color: #28a745; }
.status-badge.status-đã-hủy { background-color: #6c757d; }
