.manage-card {
    padding-bottom: 20px; /* Give more room for forms */
    display: flex; /* Enable flexbox for vertical alignment */
    flex-direction: column; /* Stack children vertically */
}

.manage-status {
    margin-top: auto; /* Push status/form to the bottom */
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    display: flex; /* Enable flexbox for inner alignment */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center horizontally */
    gap: 8px;
}


/* Specific adjustments for the listed status to match the unlisted form's layout */
.listed-status .char-price-value,
.listed-status .char-price-item {
    margin-bottom: 0; /* Remove extra bottom margin */
    /* Add padding similar to form-group if desired for visual consistency */
    padding: 8px 0; /* Example padding to match form-group inputs visually */
    width: 100%; /* Ensure it takes full width for centering */
}

.listed-status .char-price-label {
    margin-bottom: 0;
    width: 100%;
    text-align: center;
}

.mail-receiver-info {
    font-size: 0.95em;
    color: #555;
    padding: 8px 0; /* Add padding to mimic form-group height */
    width: 100%; /* Ensure it takes full width for centering */
    height: 172px;
}

.mail-receiver-label {
    font-weight: bold;
    margin-right: 5px;
}

.mail-receiver-name {
    color: #007bff; /* Highlight the name */
    font-weight: 600;
}

.unlisted-status .char-price-label {
    font-weight: normal;
    color: #dc3545; /* Red for "Not Listed" */
    font-size: 1.1em;
    margin-bottom: 15px; /* Keep this for spacing above the form */
}

.manage-form {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Space between form elements */
    margin-top: 10px;
    align-items: center; /* Center form elements */
    width: 100%; /* Ensure the form takes full width for its children to center */
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center label and input within the form-group */
    width: 100%; /* Ensure form-group takes full width */
}

.form-group label {
    margin-bottom: 2px; /* Small space between label and input */
}

.form-group input,
.form-group select {
    width: calc(100% - 20px); /* Adjust width to account for padding/margin */
    max-width: 200px; /* Optional: Limit max width for better aesthetics */
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center; /* Center text inside inputs */
}

.manage-button {
    margin-top: 10px; /* Space above the button */
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    width: auto; /* Allow button to size naturally */
}

.manage-button:hover {
    color: #ffffff;
}
/* Added for consistency in listed status */
.listed-status {
    gap: 8px; /* Add gap for consistency with the form's spacing */
}

.listed-status .char-price-label {
    font-weight: normal;
    color: #008800; /* Red for "Not Listed" */
    font-size: 1.1em;
    margin-bottom: 15px; /* Keep this for spacing above the form */
}

.unlist-button {
    all: unset; /* Remove todos os estilos herdados e padrões */
    display: inline-block;
    padding: 15px 0px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    background-color: #dc3545;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    width: 100%;
    max-width: 250px;
}
.unlist-button:hover {
    background-color: #dc3545;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px) scale(1.02);
}
.unlist-button:active {
    background-color: #dc3545;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 2px 5px rgba(0, 0, 0, 0.2);
    transform: translateY(1px) scale(0.98);
}

.unlist-button:hover {
    background-color: #c82333;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.list-button {
    background-color: #007bff; /* Blue for list */
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.list-button:hover {
    background-color: #0056b3;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.char-grid-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); /* Responsive grid */
    gap: 20px; /* Space between character cards */
    padding: 20px;
    background-color: #f0f2f5; /* Light background for the grid area */
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}
.char-grid-container-manage {
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: rgba(240, 242, 245, 0.5);
    background-size: cover;
    background-position: center;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    justify-content: center;
    position: relative;
    min-height: 200px;
    margin: 0 auto;
}
 
.char-grid-container-manage::before {
    content: "";
    position: absolute;
    inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0 */
    background-color: rgba(255, 255, 255, 0.5); /* or use black for darker effect */
    z-index: 0;
}

.char-grid-container-manage > * {
    position: relative;
    z-index: 1;
}

.char-grid-container-list {
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: rgba(240, 242, 245, 0.5);
    background-size: cover;
    background-position: center;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    justify-content: center;
    position: relative;
    min-height: 200px;
    margin: 0 auto;
}
 
.char-grid-container-list::before {
    content: "";
    position: absolute;
    inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0 */
    background-color: rgba(255, 255, 255, 0.5); /* or use black for darker effect */
    z-index: 0;
}

.char-grid-container-list > * {
    position: relative;
    z-index: 1;
}
/* .char-grid-container-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    justify-content: center;
    position: relative;
    min-height: 200px;
    margin: 0 auto;
    z-index: 1;
    border: 3px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-color: #f0f2f5;
    background-image: linear-gradient(to bottom right, #e0e0e0, #c0c0c0);
}

.char-grid-container-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/list-bg.png");
    background-color: transparent;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    opacity: 0.5;
    z-index: -1;
} */
.char-grid-container-buy {
    display: flex;
    gap: 20px; /* Space between character cards */
    padding: 20px;
    background-color: #f0f2f5; /* Light background for the grid area */
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
}

.char-card-link {
    all: unset; /* Remove todos os estilos herdados e padrões */
    text-decoration: none; /* Remove underline from the link */
    color: inherit; /* Inherit text color */
}

.char-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box; /* Crucial for correct height calculation */
}

.char-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.char-name, .char-level {
    font-size: 1em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.char-name {
    position: absolute;
    margin-top: 225px;
    color: #314273;
}

.char-image-container {
    margin-bottom: 10px;
    max-width: 100%; 
    max-height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../img/char_bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.char-thumbnail {
    width: 100%;
    height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    margin-top: 225px;
    margin: 0;
}

.char-price-border {
    margin-top: auto;
    padding-top: 10px;
    width: 100%;
    text-align: center;
    border-top: 2px solid #666;
    opacity: 0.1
}

.char-price {
    margin-top: auto;
    padding-top: 10px;
    width: 100%;
    text-align: center;
}

.char-price-label {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
}

.char-price-value {
    font-size: 1.2em;
    font-weight: bold;
    color: #28a745;
}

.char-price-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    font-weight: bold;
    color: #007bff;
}

.price-item-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: middle;
}

.price-item-name {
    margin-right: 5px;
}

.char-details-box {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 6px;
    background: #f9f9f9;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
}

.char-details-box-2 {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.char-top-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.char-top-header .char-level .char-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
}

.char-top-header .char-detail-price {
    text-align: right;
}

.char-detail-price .char-price-label {
    font-size: 1.2em;
    color: #000;
    margin-bottom: 5px;
    font-weight: bold;
}
.char-price .char-price-label {
    font-size: 1em;
    color: #000;
    margin-bottom: 5px;
    font-weight: bold;
}

.char-detail-price .char-price-value {
    font-size: 1.5em;
    font-weight: bold;
    color: #28a745; /* Green for Zeny */
}

.char-detail-price .char-price-item {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align item to the right */
    font-size: 1.2em;
    font-weight: bold;
    color: #007bff; /* Blue for Item */
}

.char-detail-price .price-item-icon {
    width: 24px; /* Adjust icon size */
    height: 24px;
    margin-right: 5px;
}

/* Main layout for image and tables */
.char-details-layout {
    display: flex; /* Use Flexbox */
    align-items: flex-start; /* Align items to the top */
    gap: 20px; /* Space between flex items */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    justify-content: center; /* Center items horizontally when wrapped */
    overflow: hidden;
    max-height: 200px;
}

.char-info-table,
.char-stats-table {
    flex: 1; /* Allow tables to grow and shrink */
    min-width: 280px; /* Minimum width before wrapping */
    border-collapse: collapse;
    width: 100%; /* Take full width of their flex container */
}

.char-info-table th,
.char-stats-table th {
    text-align: left;
    padding: 8px 12px;
    background-color: #f8f8f8;
    color: #555;
    border-bottom: 1px solid #eee;
    width: 50%; /* Adjust as needed */
}

.char-info-table td,
.char-stats-table td {
    text-align: left;
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    color: #333;
    width: 50%; /* Adjust as needed */
}

.char-info-table tr:last-child th,
.char-info-table tr:last-child td,
.char-stats-table tr:last-child th,
.char-stats-table tr:last-child td {
    border-bottom: none;
}

/* Central character image container */
.char-central-image {
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 10px; */
    /* Optional: Fixed width/height for the image container */
    width: 200px;
    height: 200px;
    flex-shrink: 0; /* Prevent it from shrinking */
    /* margin-top: -30px; */
}

.char-central-image .char-thumbnail {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensure image scales within its container */
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .char-details-layout {
        flex-direction: column; /* Stack tables and image vertically */
        align-items: center; /* Center items when stacked */
    }

    .char-info-table,
    .char-stats-table {
        min-width: unset; /* Remove min-width on smaller screens */
    }

    .char-top-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .char-top-header .char-detail-price {
        text-align: center;
        margin-top: 10px;
    }
    .char-detail-price .char-price-item {
        justify-content: center;
    }
}

.vertical-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.vertical-table th,
.vertical-table td {
    padding: 8px 10px;
    border: 1px solid #ddd;
    /* vertical-align: top; */
}

.inventory-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: center;
}

/* Note: There's a duplicate .item-card here in your provided CSS.
   Ensure you only have one definition for .item-card in your final CSS.
   I've kept it as is for demonstration, but you should consolidate. */
.item-card {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    background: #fff;
    width: 180px;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.item-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.item-amount {
    font-size: 0.95em;
    color: #555;
}

.item-status {
    font-size: 0.85em;
    color: #999;
}

.item-cards,
.item-options {
    font-size: 0.9em;
    margin-top: 6px;
}

.item-card ul {
    align-self: flex-start;
    text-align: left;
    margin-left: 0;
}

.buy-form {
    margin-top: 20px;
    text-align: center;
}

.buy-button {
    all: unset; /* Remove todos os estilos herdados e padrões */
    display: inline-block;
    padding: 15px 0px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    background-color: #FFCC00;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    width: 100%;
    max-width: 250px;
}
.buy-button:hover {
    background-color: #DDAA00;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px) scale(1.02);
}
.buy-button:active {
    background-color: #3e8e41;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 2px 5px rgba(0, 0, 0, 0.2);
    transform: translateY(1px) scale(0.98);
}

.buy-button:disabled {
    background-color: #999999;
}

/* Container Loader Wrapper */
.container-loader-wrapper {
    position: absolute; /* Positioned relative to its parent (#char-list-container) */
    top: 0;
    left: 0;
    width: 100%; /* Take full width of parent */
    height: 100%; /* Take full height of parent */
    background-color: #F5F5F5; /* Semi-transparent white background */
    display: flex; /* Use flexbox for centering */
    flex-direction: column; /* Stack spinner and text vertically */
    justify-content: flex-start; /* Center vertically */
    align-items: center; /* Center horizontally */
    z-index: 10; /* Ensure it's above other content in the container, but below anything on the whole page */
    transition: opacity 0.5s ease-out; /* Smooth fade-out effect */
    padding-top: 50px;
}

/* Spinner Animation (remains the same) */
.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue spinner */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Loader Text (remains the same) */
.loader-text {
    font-family: sans-serif;
    font-size: 1.2em;
    color: #555;
}

/* Class to hide the loader (remains the same) */
.fade-out {
    opacity: 0;
    visibility: hidden;
}


/* Styles for the Status Indicator Circle */
.status-indicator-container {
    position: absolute;
    top: 8px;   /* Equivalent to Tailwind's top-2 (0.5rem = 8px) */
    right: 8px; /* Equivalent to Tailwind's right-2 (0.5rem = 8px) */
    padding: 3px; /* Small padding around the circle if desired */
    /* Add a background to the container for better contrast */
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%; /* Make container round too */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for the container */
}

.status-circle {
    display: inline-block;
    width: 12px;  /* Equivalent to Tailwind's w-4 (1rem = 16px) */
    height: 12px; /* Equivalent to Tailwind's h-4 (1rem = 16px) */
    border-radius: 50%; /* Makes it a perfect circle */
    border: 1px solid rgba(0, 0, 0, 0.2); /* Subtle border for definition */
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3); /* Inner shadow for depth */
    transition: all 0.3s ease-in-out; /* Smooth transitions for hover/animations */
}

/* Colors and enhanced design for Online (Green) */
.status-online {
    background-color: #22c55e; /* Tailwind's bg-green-500 */
    box-shadow: 0 0 8px #22c55e, 0 0 12px #22c55e; /* Green glow */
    animation: pulse-green 2s infinite ease-in-out; /* Pulsing animation */
}

/* Colors and enhanced design for Offline (Red) */
.status-offline {
    background-color: #ef4444; /* Tailwind's bg-red-500 */
    box-shadow: 0 0 8px #ef4444, 0 0 12px #ef4444; /* Red glow */
}

/* Keyframes for the pulsing animation */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 8px #22c55e, 0 0 12px #22c55e;
    }
    50% {
        box-shadow: 0 0 15px #22c55e, 0 0 20px #22c55e;
    }
    100% {
        box-shadow: 0 0 8px #22c55e, 0 0 12px #22c55e;
    }
}

.custom-dropdown {
	position: relative;
	width: 100%;
	max-width: 300px;
	cursor: pointer;
	user-select: none;
}

.custom-dropdown .selected-option {
    padding: 0;
    min-height: 33px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-dropdown .options-list {
	display: none;
	position: absolute;
	width: 100%;
	max-height: 200px;
	overflow-y: auto;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 8px;
	z-index: 10;
	margin-top: 5px;
    padding: 0;
}

.custom-dropdown.open .options-list {
	display: block;
}

.custom-dropdown .options-list li {
	padding: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: background-color 0.2s;
}

.custom-dropdown .options-list li:hover {
	background-color: #f0f0f0;
}

.price-item-icon {
	width: 24px;
	height: 24px;
	object-fit: contain;
}
/*
.char-details-box-ui {
    display: flex;
    flex-direction: column;
}

.equipment-section {
    margin-top: 20px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
}

.tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.tab-button {
    background-color: #d8d8d8;
    border: 1px solid #ccc;
    border-bottom: none;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: bold;
    color: #444;
    transition: background-color 0.2s, color 0.2s;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.tab-button:hover {
    background-color: #e0e0e0;
}

.tab-button.active {
    background-color: #fff;
    color: #000;
    border-color: #ccc;
    position: relative;
    top: 1px;
}
.equipment-display-container {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
}

.equipment-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(6, 1fr);
}

.item-slot {
    position: relative;
    width: 60px;
    height: 60px;
    border: 2px solid #ccc;
    background-color: #e9e9e9;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
}

.item-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.item-refine,
.item-amount {
    position: absolute;
    font-size: 0.8em;
    font-weight: bold;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1px 3px;
    border-radius: 3px;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.item-refine {
    top: 2px;
    left: 2px;
}

.item-amount {
    bottom: 2px;
    right: 2px;
}

.inventory-section {
    margin-top: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    gap: 10px;
}

.modal {
}

.modal-content {
    background-color: #fefefe;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    padding: 30px;
}

.modal-item-display {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.modal-item-image {
    width: 250px;
    height: 250px;
    object-fit: contain;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.modal-item-info {
    flex-grow: 1;
}

.modal-item-info h3 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
}

.modal-item-info p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 25px;
}

.item-details-table {
    width: 100%;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #fafafa;
}

.item-details-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.item-details-table tr:last-child td {
    border-bottom: none;
}
*/