* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #f4f6f8;
    color: #333;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: #2563eb;
}

a:hover {
    text-decoration: underline;
}

.incomplete{

    font-style: italic;
    border:1px solid red;
}

/*paid package list style on superadmin side*/

.projects-wrapper {
    display: grid;
    gap: 15px;
}

.project-card {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background: #fafafa;
}

.actions {
    margin-top: 10px;
}

.delete-btn {
    color: #fff;
    background: #c0392b;
    padding: 6px 10px;
    text-decoration: none;
    border-radius: 4px;
}

.update-btn {
    color: #fff;
    background: green;
    padding: 6px 10px;
    text-decoration: none;
    border-radius: 4px;
}

.done-btn {
    color: #fff;
    background: #aaa;
    padding: 6px 10px;
    text-decoration: none;
    border-radius: 4px;
}

.support-btn {
    color: #fff;
    background: #edf;
    padding: 6px 10px;
    text-decoration: none;
    border-radius: 4px;
}
/*support ticket details*/

.ticket-wrapper {
    max-width: 700px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
}

.ticket-row {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f1f1;
}

.ticket-action {
    margin-top: 20px;
}

.cancelled-label {
    background: #ffe5e5;
    color: #c40000;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
}


.project-details-wrapper {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.detail-row {
    padding: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background: #fafafa;
}

.detail-row strong {
    display: block;
    margin-bottom: 5px;
}

/*product-image*/
.product-image {
    width: 100%;
    height: 220px;              /* Fixed card height */
    overflow: hidden;
    border-radius: 8px;
    background: #f8f8f8;        /* Soft fallback background */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* Crop nicely */
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);     /* Subtle premium zoom */
}
/*product images gallery styles*/
.product-gallery {
    max-width: 600px;
}

.gallery-main {
    position: relative;
}

.main-image {
    display: none;
}

.main-image img {
    width: 50%;
    border-radius: 8px;
}

.default-image {
    display: block;
}

/* When targeted, show selected */
.main-image:target {
    display: block;
}
/*package items*/
/* Container for each package */
.package-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Package title */
.package-box h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
}

/* Package description */
.package-box p {
    margin: 0 0 12px 0;
    color: #555;
}

/* Edit / Delete links for package */
.package-box > a {
    font-size: 13px;
    margin-right: 10px;
    text-decoration: none;
    color: #007bff;
}

.package-box > a:hover {
    text-decoration: underline;
}

/* Items container */
.package-items {
    margin-top: 10px;
    padding-left: 20px;
}

/* List styling for items */
.package-items ul {
    list-style-type: disc;
    margin: 0;
    padding-left: 20px;
}

/* Individual item styling */
.package-items li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
}

/* Item action links */
.package-items li a {
    margin-left: 8px;
    font-size: 12px;
    color: #007bff;
    text-decoration: none;
}

.package-items li a:hover {
    text-decoration: underline;
}

/* Add new item link */
.package-items > a {
    display: inline-block;
    margin-top: 5px;
    font-size: 13px;
    color: #28a745;
    text-decoration: none;
}

.package-items > a:hover {
    text-decoration: underline;
}

/* Horizontal rule between packages */
.package-box hr {
    margin-top: 15px;
    border: none;
    border-top: 1px solid #eee;
}


/*list of books with chapters*/
/* Container for each book */
.book-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Book title */
.book-box h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
}

/* Book description */
.book-box p {
    margin: 0 0 12px 0;
    color: #555;
}

/* Book action links */
.book-box > a {
    font-size: 13px;
    margin-right: 10px;
    text-decoration: none;
    color: #007bff;
}

.book-box > a:hover {
    text-decoration: underline;
}

/* Chapters container */
.book-chapters {
    margin-top: 10px;
    padding-left: 20px;
}

/* List styling for chapters */
.book-chapters ul {
    list-style-type: decimal;
    margin: 0;
    padding-left: 20px;
}

/* Individual chapter styling */
.book-chapters li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
}

/* Chapter action links */
.book-chapters li a {
    margin-left: 8px;
    font-size: 12px;
    color: #007bff;
    text-decoration: none;
}

.book-chapters li a:hover {
    text-decoration: underline;
}

/* Add new chapter link */
.book-chapters > a {
    display: inline-block;
    margin-top: 5px;
    font-size: 13px;
    color: #28a745;
    text-decoration: none;
}

.book-chapters > a:hover {
    text-decoration: underline;
}

/* Horizontal rule between books */
.book-box hr {
    margin-top: 15px;
    border: none;
    border-top: 1px solid #eee;
}

/* When something is targeted, hide default */
.main-image:target ~ .default-image {
    display: none;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
}
.table {
    display: table;
    width: 100%;
    border-collapse: collapse;
}
.table-row {
    display: table-row;
}
.table-header {
    font-weight: bold;
    background: #f5f5f5;
}
.cell {
    display: table-cell;
    padding: 10px;
    border: 1px solid #ddd;
}
.consult-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 20px;
}

.consult-row {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 2fr;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 6px;
    align-items: center;
}

.consult-header {
    background: #222;
    color: #fff;
    font-weight: bold;
}

.set-appointment-btn {
    background: #4CAF50;
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.set-appointment-btn:hover {
    background: #3c9c45;
}





#login-register {
    background: #111827;
    color: #fff;
    padding: 10px 20px;
}

#login-register ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

#login-register a {
    color: #e5e7eb;
    font-size: 14px;
}

#login-register a:hover {
    color: #fff;
}


#nav-menu {
    display: flex;
    background: #1f2933;
    padding: 12px 20px;
    gap: 30px;
}

.nav-bar-item a {
    color: #e5e7eb;
    font-weight: 500;
}

.nav-bar-item a:hover {
    color: #38bdf8;
}



#menuToggle {
    display: none;
}

/* Title section */
#title h2 {
    margin: 0 0 20px;
    font-size: 2rem;
    color: #2c3e50;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 10px;
}

/* Article content (CKEditor output) */
#article {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    white-space: pre-wrap; /* handles escaped <p> nicely */
}

/* If CKEditor outputs real HTML later */
#article p {
    margin-bottom: 15px;
}

#main-article .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

#main-article .row:last-of-type {
    border-bottom: none;
}

#main-article .label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
#main-article .value {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    text-align: right;
    max-width: 65%;
    word-break: break-word;
}
#main-article #edit {
    margin-top: 22px;
    text-align: center;
}

#main-article #edit a {
    display: inline-block;
    padding: 10px 20px;
    background: #16a34a;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.1s ease;
}

#main-article #edit a:hover {
    background: #15803d;
}

#main-article #edit a:active {
    transform: scale(0.97);
}

.courses-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    padding: 20px;
}

.course-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.course-title {
    font-size: 20px;
    margin-bottom: 8px;
    color: #222;
}

.course-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.course-type {
    background: #eef3ff;
    color: #3b5bdb;
    padding: 3px 8px;
    border-radius: 4px;
}

.course-price {
    font-weight: bold;
    color: #2b8a3e;
}

.course-description {
    font-size: 14px;
    color: #444;
    margin-bottom: 14px;
}

.course-content-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #eee;
}

.course-content-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
}

.course-content-list li a {
    text-decoration: none;
    color: #1c7ed6;
    font-size: 14px;
}

.course-content-list li a:hover {
    text-decoration: underline;
}

.no-content {
    font-size: 13px;
    color: #999;
    margin-top: 10px;
}



/* Inputs & textarea */
.field input,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* Focus state */
.field input:focus,
.field textarea:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

/* Textarea */
.field textarea {
    resize: vertical;
    min-height: 140px;
}
/* Blog list card */
#blog-list-block {
    padding: 18px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #f9f9f9;
    border-left: 5px solid #e74c3c;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Hover effect */
#blog-list-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Blog title */
#blog-title a {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
}

#blog-title a:hover {
    text-decoration: underline;
    color: #e74c3c;
}

/* Meta info */
#blog-author,
#blog-date {
    font-size: 0.85rem;
    color: #777;
    margin-top: 6px;
}

/* Author emphasis */
#blog-author {
    font-style: italic;
}

#main-body {
    display: flex;
    min-height: calc(100vh - 100px);
}
#register-login,#form-website {
    max-width: 420px;
    margin: 60px auto;
    padding: 30px 25px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

#register-login,#form-website h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    color: #222;
}

.field-row {
    margin-bottom: 18px;
}

.field-label {
    display: block;
    margin-bottom: 6px;
}

.field-label label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #555;
}

.field input {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
}

.field input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}
.field select:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}

.field {
    position: relative;
}

.field::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    color: #666;
}

.field select:disabled {
    background: #f3f4f6;
    color: #999;
    cursor: not-allowed;
}

.field select {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    outline: none;
    cursor: pointer;
    transition: border 0.2s, box-shadow 0.2s;
    appearance: none;        /* remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}
.checkbox label {
    cursor: pointer;
    user-select: none;
    font-weight: 500;
}
.checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4f46e5; /* modern browsers */
    cursor: pointer;
}


#button{
   padding: 14px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #fff;
    background: #4f46e5;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

#login-button:hover,#register-button:hover {
    background: #4338ca;
}

#login-button:active,#register-button:active  {
    transform: scale(0.98);
}

@media (max-width: 480px) {
    #login-register {
        margin: 30px 15px;
        padding: 25px 20px;
    }
}


#navigation-sa {
    width: 260px;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    background: #ffffff;
    color: #e5e7eb;
    padding: 20px;
}


    #navigation {
    width: 260px;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    background: #ffffff;
    color: #e5e7eb;
    padding: 20px;
}
#package {
    max-width: 700px;
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#package .row {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
}

#package .row:last-child {
    border-bottom: none;
}

#package .row span:first-child {
    font-weight: 600;
    color: #374151;
    text-transform: capitalize;
}

#package .row span:last-child {
    color: #111827;
    line-height: 1.6;
}

/* Price highlight */
#package .row:last-child span:last-child {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
}

#current-website a,
#dashboard a {
    display: block;
    padding: 10px;
    background: #1f2937;
    border-radius: 6px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}

#side-menu ul {
    list-style: none;
    margin-top: 15px;
    padding: 0;
}
#side-menu > ul > li {
    position: relative;
}
#side-menu a {
    display: block;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

#side-menu a:hover {
    background: #f3f4f6;
    color: #2563eb;
}

#side-menu {
    padding: 20px 0;
}

.submenu {
    display: none;
    background: #f9fafb;
}

#side-menu li:hover > .submenu {
    display: block;
}
.submenu li a {
    padding: 10px 36px;
    font-size: 13px;
    color: #374151;
}

.submenu li a:hover {
    background: #e5e7eb;
}
#side-menu > ul > li > a::after {
    content: "›";
    float: right;
    transform: rotate(90deg);
    font-size: 12px;
    opacity: 0.6;
}

#side-menu > ul > li:not(:has(.submenu)) > a::after {
    content: "";
}
#side-menu a.active {
    background: #e0e7ff;
    color: #1e40af;
    font-weight: 600;
}





#side-menu-sa ul {
    list-style: none;
    margin-top: 15px;
    padding: 0;
}
#side-menu-sa > ul > li {
    position: relative;
}
#side-menu-sa a {
    display: block;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

#side-menu-sa a:hover {
    background: #f3f4f6;
    color: #2563eb;
}

#side-menu-sa {
    padding: 20px 0;
}

.submenu-sa {
    display: none;
    background: #f9fafb;
}

#side-menu-sa li:hover > .submenu {
    display: block;
}
.submenu-sa li a {
    padding: 10px 36px;
    font-size: 13px;
    color: #374151;
}

.submenu-sa li a:hover {
    background: #e5e7eb;
}
#side-menu-sa > ul > li > a::after {
    content: "›";
    float: right;
    transform: rotate(90deg);
    font-size: 12px;
    opacity: 0.6;
}

#side-menu-sa > ul > li:not(:has(.submenu-sa)) > a::after {
    content: "";
}
#side-menu-sa a.active {
    background: #e0e7ff;
    color: #1e40af;
    font-weight: 600;
}







#main-article {
    max-width: 1000px;
    margin: 40px auto;
    padding: 25px 22px;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    flex: 1;
    background: #f8fafc;
    background: #ffffff;
}


.orders-table,.invoice-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.orders-header,.invoice-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    padding: 12px 14px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
}

.orders-row,.invoice-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    align-items: center;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

.orders-row:hover, .invoice-row:hover {
    background: #f9fafb;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.invoice-row a {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
}

.invoice-row a:hover {
    text-decoration: underline;
}

.status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.status.Paid {
    background: #dcfce7;
    color: #15803d;
}

.status.Pending {
    background: #fef3c7;
    color: #92400e;
}

.status.Failed {
    background: #fee2e2;
    color: #991b1b;
}
.orders-row > div:nth-child(2),
.orders-row > div:nth-child(5), {
    text-align: right;
}

.row .cell:nth-child(3) {
    font-weight: 700;
}

.row .cell:nth-child(3):not(:contains("DRAFT")) {
    color: #16a34a; /* fallback */
}


.table {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.row-header,
.row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
}

.row-header {
    background: #f1f5f9;
    font-weight: 700;
}

.cell {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.row:hover {
    background: #f8fafc;
}

.status.published {
    color: #16a34a;
    font-weight: 600;
}

.status.draft {
    color: #ca8a04;
    font-weight: 600;
}

.cell a {
    font-size: 13px;
    font-weight: 500;
}

.cell a.edit { color: #2563eb; }
.cell a.delete { color: #dc2626; }
.cell a.publish { color: #16a34a; }


#add {
    margin-top: 20px;
}

#add a {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
}

#add a:hover {
    background: #1d4ed8;
}

.project-packages-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #222;
}

/* Packages grid */
.shop_products_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* Package card */
.package-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

/* Package name */
.package-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

/* Package description */
.package-type {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Button */
.btn-view {
    display: inline-block;
    text-align: center;
    padding: 10px 16px;
    border-radius: 10px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.25s ease, transform 0.2s ease;
}

.btn-view:hover {
    background: #1e4fd8;
    transform: translateY(-1px);
}


#menu-links{
}

#menu-links ul{
    list-style: none;
    margin-top:10%;
    min-width: 30%;
}

#menu-links ul li{
    font-size: 1.2rem;
    text-transform: capitalize;
    display: block;
    float: left;
    min-height: 40px;
    padding: 5%;
    border-radius: 25%;
}
#menu-links ul li a{
color:brown;
}
#menu-links ul li a:hover{
cursor: hand;
text-decoration: none;
}
@media (max-width: 900px) {
    #navigation-sa {
        display: none;
    }

    #main-body {
        flex-direction: column;
    }
    #navigation {
        display: none;
    }

    #main-body {
        flex-direction: column;
    }
}


/* Mobile */
@media (max-width: 768px) {
    #nav-menu {
        display: none;
    }

    #menuToggle {
    display: block;
    position: relative;
    padding: 15px;
    user-select: none;
}
#menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
}
#menuToggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    background: #111;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
#menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 220px;
    padding: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    list-style: none;
    transform: translateX(-110%);
    transition: transform 0.3s ease;
}
#menu li {
    margin-bottom: 12px;
}

#menu li a {
    text-decoration: none;
    font-size: 14px;
    color: #111;
    font-weight: 600;
}
#menuToggle input:checked ~ #menu {
    transform: translateX(0);
}
#menuToggle input:checked ~ span:nth-child(2) {
    transform: rotate(45deg) translate(5px, 5px);
}

#menuToggle input:checked ~ span:nth-child(3) {
    opacity: 0;
}

#menuToggle input:checked ~ span:nth-child(4) {
    transform: rotate(-45deg) translate(6px, -6px);
}
.orders-header {
        display: none;
    }

    .orders-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 14px;
    }

    .orders-row > div {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
    }

    .orders-row > div::before {
        content: attr(data-label);
        font-weight: 600;
        color: #6b7280;
    }

    .project-packages-title {
        font-size: 22px;
    }

    .package-card {
        padding: 18px;
    }

}

@media (max-width: 600px) {
    #main-article {
        margin: 25px 15px;
    }
    #package .row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    #package .row span:first-child {
        font-size: 13px;
        color: #6b7280;
    }

    #main-article .row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    #blog-title a {
        font-size: 1.1rem;
    }
    #main-article .value {
        text-align: left;
        max-width: 100%;
    }
}