/* User Interaction Restrictions */

/* Disable text selection */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Fix footer layout issues */
footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 5px;
    position: relative;
}

/* Fix barcode positioning to prevent text clipping */
.barcode {
    height: 25px; /* Slightly reduce height */
    margin-bottom: 5px;
}

.code {
    font-size: 0.65rem; /* Smaller font size */
    line-height: 1;
}

/* Adjust social icons positioning */
.social-icons {
    display: flex;
    gap: 15px;
    position: fixed;
    right: 30px; /* Adjusted from 20px to 30px to move icons left */
    bottom: 20px;
    z-index: 50; /* Ensure icons appear above other elements */
}

/* Fix X icon specific alignment */
.social-icons a:last-child {
    margin-right: -10px; /* Pull the X icon to the left */
}

/* Target X icon specifically by URL */
.social-icons a[href*="x.com"] .social-icon {
    margin-right: -5px; /* Fine-tune X icon position */
}

/* Ensure the container has enough bottom padding */
.container {
    padding-bottom: 60px !important;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .container {
        padding-bottom: 70px !important;
    }
}
