/* Base navigation styling */
.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
    position: relative;
}

/* Hidden by filter class - must override display property */
.product-card.hidden-by-filter {
    display: none !important;
}

.dropdown {
    position: relative;
    /* Keeps the submenu aligned to this item */
}

/* Hide the submenu by default */
.logo-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    z-index: 1000;
    gap: 20px;
    /* Puts space between the two logos */
}

/* When Javascript applies the "show" class, flex display makes them vertical */
.logo-submenu.show {
    display: flex;
    flex-direction: column;
}

/* Styling for the individual logo links inside the submenu */
.submenu-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s ease;
}

.submenu-logo-link:hover {
    transform: scale(1.1);
}

.submenu-logo-link img {
    height: 50px;
    /* Adjust height to match your logo sizes */
    width: auto;
    margin-bottom: 5px;
}

/* This targets the active link inside your nav-links structure */
.nav-links a.active {
    color: #c00000 !important;
    /* Force your brand red color */
    font-weight: bold;
    border-bottom: 2px solid #c00000;
    /* Optional: adds a nice underline to the active tab */
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* --- Production Folder Tab System --- */
:root {
    --tab-bg-inactive: #f5eed3;
    --tab-border: 3px solid #000000;
}

.folder-tabs-container {
    width: 100%;
    max-width: 100%;
    /* Fill the products-container parent */
    margin: 0 auto;
}

.tab-header {
    display: flex;
    gap: 15px;
    margin-left: 20px;
    position: relative;
    z-index: auto;
    /* Remove the restriction so children can stack against the pane */
}

.tab-button {
    background: var(--tab-bg-inactive);
    border: var(--tab-border);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    padding: 12px 0;
    flex: 0 0 220px;
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
    text-align: center;
    cursor: pointer;
    position: relative;
    bottom: -3px;
    /* Pulls the tab down to overlap the content border exactly */
    z-index: 1;
    /* Stays behind the content pane (shows the line) */
    transition: all 0.2s ease;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.tab-button.active {
    background: #ffffff;
    z-index: 3;
    /* Jumps in front of the content pane border (hides the line) */
    padding-bottom: 18px;
    /* Extra padding helps mask the line */
    color: #c20a13;
    border-bottom: 3px solid #ffffff !important;
    /* Erases the black line underneath it */
    bottom: -3px;
}

.tab-content-pane {
    background: #ffffff;
    border: var(--tab-border);
    border-radius: 16px;
    border-top-left-radius: 0;
    padding: 30px;
    min-height: 200px;
    box-shadow: 0 10px 0px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    /* Sits above inactive tabs but below the active tab */
}

/* --- Ensure grids align correctly --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.selection-card.selected {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.selection-card .selection-inputs input:focus {
    border-color: #007bff;
    outline: none;
}

.selection-instruction {
    font-size: 0.85rem;
    color: #666;
    margin-top: -10px;
    margin-bottom: 20px;
    font-style: italic;
    display: block;
}

/* Standardized Image Container */
.product-image-container {
    height: 160px;
    /* Fixed height for all grid images */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-image-container img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    /* Shrinks large images to fit without distortion */
}

/* --- Inline Expanded Card Styles --- */
.product-card {
    /* Specifically exclude 'grid-column' and 'order' from transitions to prevent sliding to the left */
    transition: box-shadow 0.4s ease, border 0.4s ease, transform 0.4s ease, border-radius 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Ensure cards in a row have equal height */
}

.product-card.selected-for-calc {
    border: 2px solid #28a745 !important;
    background-color: #f8fff9;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.1);
}

.product-card h4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Max 2 lines for title */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
    /* Fixed height to keep grid aligned */
}

.product-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Max 3 lines for description */
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.5em;
    /* Fixed height to keep grid aligned */
}

/* ============================================================
   PREMIUM ACTION BUTTONS OVERHAUL
   ============================================================ */
.product-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: auto;
    overflow: visible;
}

.product-actions button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    cursor: pointer;
    outline: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Micro-Tooltips */
.product-actions button .button-text {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #1a1a1a;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    z-index: 100;
}

/* Tooltip Arrow */
.product-actions button .button-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1a1a1a;
}

.product-actions button:hover {
    transform: translateY(-5px);
}

.product-actions button:hover .button-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ------------------------------------------------------------
   STYLE A: GLASSMORPHISM / MINIMALIST
   ------------------------------------------------------------ */
.actions-glass button {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    color: #666;
    /* Monochrome default */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.actions-glass .view-product-btn {
    background: #000;
    color: #fff;
}

.actions-glass .view-package-btn {
    background: #000;
    color: #fff;
}

.actions-glass .view-product-btn:hover {
    color: #fff;
    background: #333;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.actions-glass .view-package-btn:hover {
    color: #fff;
    background: #333;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.actions-glass .select-product-btn:hover {
    color: #f39c12;
    background: #fff;
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.15);
}

.actions-glass .edit-product-btn:hover {
    color: #333;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.actions-glass .delete-product-btn:hover {
    color: #dc3545;
    background: #fff;
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.15);
}

.actions-glass .select-product-btn.selected {
    color: #28a745;
    border-color: #28a745;
}

/* ------------------------------------------------------------
   STYLE B: TACTILE / NEUMORPHIC (Skeuomorphic)
   ------------------------------------------------------------ */
.actions-tactile button {
    background: #f9f9f9;
    border-radius: 50%;
    box-shadow: 5px 5px 10px #e6e6e6, -5px -5px 10px #ffffff;
    color: #444;
}

.actions-tactile button:active {
    box-shadow: inset 3px 3px 6px #e6e6e6, inset -3px -3px 6px #ffffff;
    transform: translateY(0) scale(0.95);
}

.actions-tactile .view-product-btn:hover {
    color: #007bff;
    background: linear-gradient(145deg, #ffffff, #e6f2ff);
}

.actions-tactile .select-product-btn:hover {
    color: #f39c12;
    background: linear-gradient(145deg, #ffffff, #fff5e6);
}

.actions-tactile .edit-product-btn:hover {
    color: #333;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
}

.actions-tactile .delete-product-btn:hover {
    color: #dc3545;
    background: linear-gradient(145deg, #ffffff, #ffe6e6);
}

/* Specific Icon Sizing */
.button-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.product-actions button:hover .button-icon {
    transform: scale(1.2);
}

/* Existing compatibility fixes */
.product-card.viewing-details {
    grid-column: 1 / 2 !important;
    border: 2px solid #007bff;
    border-right: none;
    border-radius: 16px 0 0 16px;
    z-index: 11;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: none !important;
    /* Remove zoom effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* The separate details card that slides to the right */
.product-details-card {
    grid-column: 2 / -1;
    /* Take up all remaining space in the row */
    background: #fff;
    border: 2px solid #007bff;
    border-left: none;
    border-radius: 0 16px 16px 0;
    padding: 30px;
    position: relative;
    z-index: 10;
    animation: slideInLeftToRight 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 25px;
}

/* Ensure details card handles long descriptions with internal scrolling */
.product-details-card .product-description {
    display: block;
    max-height: 200px;
    /* Limits description height to prevent card growing too tall */
    height: auto;
    /* Overrides fixed height from grid view to allow scrolling */
    overflow-y: auto;
    /* Adds scrollbar if content exceeds max-height */
    overflow-x: hidden;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    padding-right: 10px;
    /* Space for the scrollbar */
}

@keyframes slideInLeftToRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    /* Starts slightly to the left to slide Right */
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- Calculate Expenses Modal --- */
.add-product-btn,
.btn-calculate {
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin: 0;
    /* Ensures alignment in flex containers */
    line-height: 1;
    /* Normalizes height variations caused by emojis */
    white-space: nowrap;
}

.add-product-btn {
    background-color: #28a745;
    color: white;
}

.btn-calculate {
    background-color: #f39c12;
    color: white;
}

.btn-calculate:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-calculate:hover {
    background-color: #e67e22;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 3000;
    /* Stays over existing folder tabs */
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.modal-box {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    width: 95%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #333;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.close-modal {
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
    line-height: 1;
}

.close-modal:hover {
    color: #c20a13;
}

.fulfillment-options {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    flex-wrap: wrap;
}

.expense-product-list {
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 6px;
    background: #fcfcfc;
}

.expense-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.expense-item:last-child {
    border-bottom: none;
}

.product-name {
    flex-grow: 1;
    font-size: 0.9rem;
    color: #444;
}

/* =========================================
   2. FIX: VIEW MORE BUTTON ON ONE LINE & NOT CROPPED
   ========================================= */
.btn-view-more {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    margin: 0 auto !important;
    /* Centers the button horizontally */

    /* THE FIX FOR THE CROPPING: */
    width: auto !important;
    /* Ignores the tiny fixed width */
    min-width: 130px !important;
    /* Ensures it's always wide enough */
    padding: 8px 16px !important;
    /* Gives the text room to breathe */
    border-radius: 25px !important;
    /* Makes it a nice pill shape instead of a circle */
    overflow: visible !important;
    /* Prevents the text from being chopped off */
}

.product-actions button {
    width: auto !important;
    padding: 8px 16px !important;
    border-radius: 25px !important;
    white-space: nowrap !important;
}

/* =========================================
   UBILINK PRODUCTS CARD STYLING (MOCKUP MATCH)
   ========================================= */
.ubilink-card {
    background: #ffffff !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 12px !important;
    padding: 30px 25px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 420px !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.ubilink-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-3px) !important;
}

.ubilink-card-header {
    margin-bottom: 8px !important;
}

.ubilink-card-title {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: #0f224a !important;
    margin: 0 !important;
    height: auto !important;
    line-height: 1.2 !important;
    overflow: visible !important;
    text-align: center !important;
}

.ubilink-speed-badge-row {
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 10px !important;
}

.ubilink-speed-badge {
    background-color: #c00000 !important;
    color: #ffffff !important;
    padding: 4px 12px !important;
    border-radius: 4px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    display: inline-block !important;
}

.ubilink-card-subheader {
    font-size: 0.85rem !important;
    color: #7f8c8d !important;
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
    text-align: left !important;
}

.ubilink-icons-row {
    display: flex !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
}

.ubilink-icon-circle {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    border: 1px solid #ffd8c2 !important;
    background-color: #fffbf2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ff7e36 !important;
}

.ubilink-divider {
    border-top: 1px solid #f0f0f0 !important;
    margin: 15px 0 !important;
    width: 100% !important;
}

.ubilink-features-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 15px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    text-align: left !important;
    max-height: 120px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.ubilink-feature-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.ubilink-checkmark-circle {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    border: 1px solid #c00000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #c00000 !important;
    flex-shrink: 0 !important;
}

.ubilink-feature-text {
    font-size: 0.95rem !important;
    color: #7f8c8d !important;
}

.ubilink-price-container {
    margin-top: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    padding-top: 8px !important;
}

.ubilink-price {
    font-size: 2.1rem !important;
    font-weight: 800 !important;
    color: #c00000 !important;
}

.ubilink-currency {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
}

.ubilink-price-period {
    font-size: 0.95rem !important;
    color: #000000 !important;
    font-weight: 700 !important;
}

.ubilink-card-actions {
    border-top: none !important;
    padding-top: 0 !important;
}

/* View More Button */
.ubilink-view-more-btn {
    background: none !important;
    border: none !important;
    color: #c00000 !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    padding: 4px 0 !important;
    text-decoration: underline !important;
    margin-bottom: 6px !important;
    display: block !important;
    text-align: left !important;
    font-family: 'Poppins', sans-serif !important;
}

.ubilink-view-more-btn:hover {
    color: #8b0000 !important;
}

/* Plan Details Modal */
.plan-details-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 5000;
    align-items: center;
    justify-content: center;
}

.plan-details-modal-overlay.active {
    display: flex;
}

.plan-details-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 520px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 36px 32px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    animation: planModalIn 0.25s ease;
}

@keyframes planModalIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.plan-details-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #555;
    line-height: 1;
}

.plan-details-modal-close:hover {
    color: #c00000;
}

.plan-details-modal-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f224a;
    margin: 0 0 6px;
}

.plan-details-modal-badge {
    display: inline-block;
    background: #c00000;
    color: #fff;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.plan-details-modal-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 18px 0 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid #f0f0f0;
}

.plan-details-modal-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid; /* Changed from flex to grid */
    grid-template-columns: repeat(2, 1fr); /* Creates exactly two equal columns */
    gap: 10px; /* Keeps your spacing between items */
}

/* --- Edit Package Modal Overlay --- */
.edit-package-modal-overlay {
    /* position: fixed and z-index make it a popup over the page */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 3000;

    /* Center the modal box inside the overlay */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Edit Package Modal Main Box --- */
.edit-package-modal {
    background-color: #fff;
    width: 90%;
    max-width: 900px;
    min-height: 550px;
    border-radius: 12px;
    display: flex;
    /* Uses Flexbox to put the sidebar and main content side-by-side */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* --- Left Sidebar --- */
.pkg-modal-sidebar {
    width: 250px;
    background-color: #f8f9fa;
    border-right: 1px solid #eee;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pkg-modal-sidebar ul {
    list-style: none;
    padding: 0;
}

.pkg-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 5px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.pkg-nav-link.active,
.pkg-nav-link:hover {
    background-color: #e9ecef;
    color: #c00000;
}

.nav-icon {
    width: 20px;
    height: 20px;
}

.pkg-delete-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: none;
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.pkg-delete-btn:hover {
    background: #dc3545;
    color: white;
}

/* --- Right Main Panel --- */
.pkg-modal-main {
    flex-grow: 1;
    padding: 30px;
    background: #fff;
}

.pkg-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.pkg-header-icon img {
    height: 50px;
    object-fit: contain;
}

.pkg-upload-btn {
    background: #f0f0f0;
    border: 1px solid #ccc;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
}

/* --- Form Layouts inside Modal --- */
.pkg-dashboard-pane {
    display: none;
    /* Hides all tabs by default */
}

.pkg-dashboard-pane.active {
    display: block;
    /* Only shows the active tab */
}

.pkg-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}

.pkg-input-group .input-icon {
    padding: 10px 15px;
    background: #f8f9fa;
    border-right: 1px solid #ccc;
}

.pkg-input-group input,
.pkg-input-group textarea {
    flex-grow: 1;
    border: none;
    padding: 10px;
    outline: none;
}

.pkg-input-group textarea {
    min-height: 100px;
    resize: vertical;
}

.pkg-form-row {
    display: flex;
    gap: 15px;
}

.pkg-save-btn {
    background-color: #c00000;
    color: white;
    border: none;
    padding: 12px 24px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

.pkg-save-btn:hover {
    background-color: #a00000;
}