    .user-info-container {
        display: flex;
        width: 100%;
		}

    .user-info-column {
        flex: 1;  /* Allocates half of the space to each column */
        display: flex;
        flex-direction: column;  /* Aligns the info-items vertically */
    }

    .info-item {
        display: flex;
        justify-content: space-between;  /* Places the label on the left and the value on the right */
        margin-bottom: 10px;  /* Adds spacing between rows */
		font-size:18px;
    }

    .info-item strong {
        margin-right: 10px;  /* Adds some spacing between the label and the value */
    }


.user-info {
            display: flex;
            justify-content: space-between;
        }
        .user-info-column {
            flex: 1;
            padding: 0 10px;
        }
        
        .btn-secondary { background-color:#eee; }
    

    textarea.form-control {
        height: auto;
        min-height: 140px;
    }
    .ducks-module {
        margin-top: 20px;
    }
    .duck-carousel {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        white-space: nowrap;
    }
    .duck-box {
        width: 33.33%;
        flex-shrink: 0;
        border: 1px solid #ccc;
        padding: 10px;
        text-align: center;
        cursor: pointer;
        display: inline-block;
        vertical-align: top;
        box-sizing: border-box;
    }
    .duck-box img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    .error {
        color: red;
    }
    .success {
        color: green;
    }
    /* Custom CSS to make buttons larger for mobile use */
    @media (max-width: 768px) {
        .btn {
            font-size: 18px;
            padding: 12px 24px;
        }
        .form-control {
            font-size: 16px;
            padding: 3px;
        }
    }
    @media (min-width: 769px) {
        .btn {
            font-size: 16px;
            padding: 10px 20px;
        }
        .form-control {
            font-size: 14px;
            padding: 8px;
        }
    }
    .herobuttonbox { position:absolute; right:15px;bottom:15px; }
    .herobuttonbox img { width:160px; }
    @media (max-width: 768px) {
    .herobuttonbox img { width:75px; }}
	
	
	
.search-container {
    position: relative;
    width: 100%;
}

#search-input {
    width: 100%;
    box-sizing: border-box;
    padding-right: 30px;
}

#clear-search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
}

#clear-search:hover {
    color: red;
}

#suggestions {
    margin-top: 10px;
}

.suggestion-item {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-decoration: none;
    color: #333;
}

.suggestion-item:hover {
    background-color: #f5f5f5;
}

.suggestion-item:last-child {
    border-bottom: none;
}



/* New container styles */
.input-flex-container {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    align-items: center;
}

.input-flex-main {
    flex: 2;
}

.input-flex-modifier {
    flex: 1;
    min-width: 120px;
}

.input-flex-info {
    flex: 1;
    min-width: 150px;
    padding: 6px 12px;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
}

/* Token related styles */
.token-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 170px;
}

.token-spend {
    font-size: 12px;
    padding: 3px 8px;
    margin-top: 3px;
}

.tokens-available {
    font-weight: bold;
    color: #28a745;
}

.no-tokens {
    color: #6c757d;
}

/* Notification styles */
.token-spent-notification, 
.token-error-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    color: white;
    z-index: 1000;
    animation: slide-in 0.3s ease-out;
}

.token-spent-notification {
    background-color: #28a745;
}

.token-error-notification {
    background-color: #dc3545;
}

.fade-out {
    animation: fade-out 0.5s ease-out forwards;
}

@keyframes slide-in {
    0% { transform: translateX(300px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes fade-out {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

/* Dollar amount styles */
.total-updated {
    background-color: #d4edda;
    border-color: #c3e6cb;
    animation: highlight 1s ease-out;
}

@keyframes highlight {
    0% { background-color: #d4edda; }
    100% { background-color: #fff; }
}

/* Section dividers */
.section-divider {
    border-top: 1px solid #ddd;
    margin: 30px 0 20px;
    padding-top: 10px;
}

.section-header {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #555;
}

/* Make the spend token button disabled looking when no tokens available */
#spend_token.disabled {
    opacity: 0.6;
    cursor: not-allowed;
	padding:5px 12px;
}

/* Improve spacing in the form */
.form-group {
    margin-bottom: 20px;
}


.input-flex-action {
    flex: 1;
    min-width: 120px;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    color: white;
    z-index: 1000;
    animation: slide-in 0.3s ease-out;
}

.notification-success {
    background-color: #28a745;
}

.notification-warning {
    background-color: #ffc107;
    color: #212529;
}

.notification-error {
    background-color: #dc3545;
}