@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

/* Default Light Theme */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f5f5;
    color: #222;
    text-align: center;
    margin: 0;
    padding: 0;
    transition: background 0.3s, color 0.3s;
}

.container {
    max-width: 500px;
    margin: 50px auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

/* Dark Theme */
body.dark-theme {
    background-color: #121212;
    color: #E0E0E0;
}

.dark-theme .container {
    background: #1E1E1E;
}

/* Logo */
#logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

/* Inputs */
#addressForm input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 10px;
}

/* Hide input and button after stats are loaded */
.hidden {
    display: none;
}

/* Buttons */
button {
    background-color: #F2A900;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* Dark Mode Buttons */
.dark-theme button {
    color: #000;
}

/* Links */
.links-container img {
    width: 90%;
    max-width: 1018px;
    height: auto;
}
#btcAddressDisplay {
    word-break: break-all; /* Ensure long addresses wrap */
    overflow-wrap: break-word;
    text-align: center;
    max-width: 100%;
}
.links {
    text-align: center;
    margin-top: 20px;
}
.links img {
    max-width: 100%;  /* Ensure images fit within the container */
    height: auto;  /* Maintain aspect ratio */
    width: 80%; /* Adjust for better scaling */
    max-height: 150px; /* Prevent images from becoming too large */
    display: block;
    margin: 10px auto; /* Center images */
    border-radius: 10px; /* Slightly rounded corners for a clean look */
}