.my-custom-text {
    background: linear-gradient(135deg, rgb(255, 58, 107) 0%, rgb(253, 45, 45) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.my-custom-bg {
    background: linear-gradient(135deg, rgb(255, 58, 107) 0%, rgb(253, 45, 45) 100%);
}


/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.timeline-container {
    max-width: 100%;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.timeline {
    position: relative;
    padding-left: 20px;
    /* Add left padding to make room for the line */
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #ccc;
    top: 0;
    bottom: 0;
    left: 5px;
    /* Adjust the left position */
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    /* Align items to the top */
    margin-bottom: 20px;
    position: relative;
}

.timeline-time {
    width: 55px;
    font-size: 0.7rem;
    text-align: right;
    padding-right: 15px;
    color: #666;
    flex-shrink: 0;
    /* Prevent the time from shrinking */
}

.timeline-content {
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-grow: 1;
    /* Allow the content to grow and fill available space */
}

.timeline-content h3 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.timeline-content p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #666;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #666;
    border-radius: 50%;
    left: -20px;
    /* Adjust the left position to align with the line */
    top: -1px;
    /* Adjust top position to align with the content */
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.my-bg-success {
    background-color: #e4f2e4;
}

.my-bg-warning {
    background-color: #f2f0e4;
}

.my-bg-info {
    background-color: #d3e4f2;
}

.my-bg-danger {
    background-color: #f2e4e4;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content input {
    padding: 8px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-content div {
    padding: 8px;
    cursor: pointer;
    background-color: white;
}

.dropdown-content div:hover {
    background-color: #ddd;
}

.dropdown-content.show {
    display: block;
}

.hot-product {
    background-color: #ffb120;
    color: #fff;
}

.best-seller-product {
    background-color: #29f1ff;
    color: #fff;
}

.sale-product {

    background-color: #f75033;
    color: #fff;
}

.new-product {
    background-color: #54ff31;
    color: #fff;
}

.promo-product {
    background-color: #6b86ff;
    color: #fff;
}

.bg-damage-product {
    background-color: #770000;
    color: #fff;
}