/* Base styles to replicate the Tailwind foundation */
body {
    font-family: sans-serif;
}

/* Custom styles for the Donation Page */
.hero-content {
    /* Styles for the hero content area */
}

.text-white {
    color: white;
}

.text-5xl {
    font-size: 3rem; /* Adjusted for better mobile display */
}

.text-yellow-400 {
    color: #facc15;
}

.text-3xl {
    font-size: 1.875rem;
}

.mt-4 {
    margin-top: 1rem;
}

#crypto-contributions {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: #f5f5f5;
}

@media (min-width: 768px) {
    #crypto-contributions {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.max-w-4xl {
    max-width: 56rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

@media (min-width: 768px) {
    .md-text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
}

.font-bold {
    font-weight: 700;
}

.text-orange-500 {
    color: #f97316;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

.mb-12 {
    margin-bottom: 3rem;
}

.p-6 {
    padding: 1.5rem;
}

.bg-yellow-100 {
    background-color: #fefce8;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.border-2 {
    border-width: 2px;
}

.border-yellow-300 {
    border-color: #fde047;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-gray-700 {
    color: #374151;
}

.leading-relaxed {
    line-height: 1.625;
}

.font-open-sans {
    font-family: 'Open Sans', sans-serif;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-gray-800 {
    color: #1f2937;
}

.mb-8 {
    margin-bottom: 2rem;
}

.overflow-x-auto {
    overflow-x: auto;
}

.min-w-full {
    min-width: 100%;
}

.divide-y > * + * {
    border-top-width: 1px;
}

.divide-gray-200 {
    border-color: #e5e7eb;
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.rounded-lg {
    border-radius: 0.5rem;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.text-left {
    text-align: left;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.font-medium {
    font-weight: 500;
}

.text-gray-500 {
    color: #6b7280;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

/* Specific colorful row styles */
.bg-yellow-50 {
    background-color: #fffbeb;
}

.bg-blue-50 {
    background-color: #eff6ff;
}

.bg-purple-50 {
    background-color: #faf5ff;
}

.bg-orange-50 {
    background-color: #fff7ed;
}

.hover\:bg-yellow-100:hover {
    background-color: #fefce8;
}

.hover\:bg-blue-100:hover {
    background-color: #dbeafe;
}

.hover\:bg-purple-100:hover {
    background-color: #f3e8ff;
}

.hover\:bg-orange-100:hover {
    background-color: #ffedd5;
}

.transition-colors {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-200 {
    transition-duration: 200ms;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.font-mono {
    font-family: monospace;
}

.break-all {
    word-break: break-all;
}

.ml-2 {
    margin-left: 0.5rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.border {
    border-width: 1px;
}

.border-gray-300 {
    border-color: #d1d5db;
}

.rounded-md {
    border-radius: 0.375rem;
}

.text-gray-900 {
    color: #111827;
}

.hover\:bg-gray-100:hover {
    background-color: #f3f4f6;
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.5);
}

.focus\:ring-offset-2:focus {
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.5);
}

.focus\:ring-indigo-500:focus {
    box-shadow: 0 0 0 2px #6366f1;
}

.mt-8 {
    margin-top: 2rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .sm-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .md-grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.gap-8 {
    gap: 2rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.p-4 {
    padding: 1rem;
}

.bg-white {
    background-color: #ffffff;
}

.w-full {
    width: 100%;
}

.h-auto {
    height: auto;
}

.max-w-\[200px\] {
    max-width: 200px;
}

.mb-4 {
    margin-bottom: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.bg-yellow-400 {
    background-color: #facc15;
}

.rounded-full {
    border-radius: 9999px;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.bg-blue-500 {
    background-color: #3b82f6;
}

.text-white {
    color: #ffffff;
}

.bg-purple-600 {
    background-color: #7c3aed;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.bg-orange-600 {
    background-color: #ea580c;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

.bg-red-100 {
    background-color: #fee2e2;
}

.border-red-400 {
    border-color: #f87171;
}

.text-left {
    text-align: left;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-red-800 {
    color: #991b1b;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

/* Updated Copy Button styles */
.copy-button {
    background-color: #f3f4f6; /* Very light gray */
    color: #4b5563; /* Dark gray */
    padding: 4px 8px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.75rem; /* text-xs */
    font-weight: 500; /* font-medium */
    transition: background-color 0.2s ease;
}

.copy-button:hover {
    background-color: #e5e7eb; /* Slightly darker gray on hover */
}

/* Styles for the new, neutral copy buttons */
.copy-btn-neutral {
    background-color: #D3D3D3; /* Light gray */
    color: #4B5563; /* Dark gray text */
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover states for each specific cryptocurrency button */
.copy-btn-neutral.btc:hover {
    background-color: #facc15; /* Yellow */
    color: #333;
}

.copy-btn-neutral.tezos:hover {
    background-color: #3b82f6; /* Blue */
    color: white;
}

.copy-btn-neutral.polygon:hover {
    background-color: #7c3aed; /* Purple */
    color: white;
}

.copy-btn-neutral.monero:hover {
    background-color: #ea580c; /* Orange */
    color: white;
}

/* Ensures the text in the address cell wraps correctly */
.address-cell {
    word-break: break-all;
}

/* style3-4.css - new rules to target the IDs and restore hover effects */

/* New, neutral style for the copy buttons to override the default */
.copy-btn-neutral {
    background-color: #D3D3D3; /* Light gray */
    color: #4B5563; /* Dark gray text */
    transition: background-color 0.2s ease;
}

/* Specific hover effects using the new IDs for higher precedence */
#copy-btc-btn:hover {
    background-color: #facc15; /* Yellow */
}

#copy-xtz-btn:hover {
    background-color: #3b82f6; /* Blue */
}

#copy-polygon-btn:hover {
    background-color: #7c3aed; /* Purple */
}

#copy-xmr-btn:hover {
    background-color: #ea580c; /* Orange */
}

