#cryptoEnergy .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    padding: 0 20px;
}

#cryptoEnergy #energyWalletInput {
    padding: 12px;
    font-size: 16px;
    width: 600px;
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 6px;
    text-align: center;
    font-family: monospace;
}

#cryptoEnergy #energyWalletError {
    color: red;
    font-size: 14px;
    margin-bottom: 12px;
    text-align: center;
    max-width: 600px;
    min-height: 20px;
}

#cryptoEnergy #energyToggleMining {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#cryptoEnergy #energyToggleMining.mining {
    background-color: #dc3545;
}

#cryptoEnergy #energySpinner {
    width: 20px;
    height: 20px;
    border: 3px solid white;
    border-top: 3px solid #28a745;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

#cryptoEnergy #iconBolt {
    font-size: 18px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#cryptoEnergy #energyTimerContainer {
    margin-top: 20px;
    width: 100%;
    max-width: 600px;
}

#cryptoEnergy #energyTable {
    width: 100%;
    border-collapse: collapse;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#cryptoEnergy #energyTable tr {
    border-bottom: 1px solid #ddd;
}

#cryptoEnergy #energyTable td {
    padding: 12px;
    font-size: 16px;
    color: #333;
    min-height: 24px;
    line-height: 24px;
}

#cryptoEnergy #energyTable td:first-child {
    font-weight: bold;
    width: 40%;
    background-color: #f0f0f0;
}

#cryptoEnergy #energyTable td:last-child {
    text-align: right;
}

#cryptoEnergy #energyTime,
#cryptoEnergy #energyStatus,
#cryptoEnergy #nextPulse {
    color: #007bff;
}

#cryptoEnergy #generatedBalance {
    color: #28a745;
}

#cryptoEnergy #totalTransferred {
    color: #6f42c1;
}

/* Òðàíçàêö³¿ — çàëèøàºìî, áî ìîæóòü áóòè íà ò³é ñàì³é ñòîð³íö³ */
#cryptogigTransactions {
    margin-top: 40px;
}

#cryptogigTransactions h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

#cryptogigTransactions .table-wrapper {
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
}

#cryptogigTransactions table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    min-width: 600px;
}

#cryptogigTransactions th,
#cryptogigTransactions td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

#cryptogigTransactions th {
    background-color: #f4f4f4;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 700px) {
    #cryptoEnergy #energyWalletInput {
        width: 100%;
        font-size: 14px;
    }
    #cryptoEnergy #energyWalletError {
        font-size: 12px;
    }
    #cryptoEnergy #energyToggleMining {
        padding: 10px 20px;
        font-size: 14px;
    }
    #cryptoEnergy #energyTable td {
        font-size: 12px;
        padding: 8px;
    }
    #cryptogigTransactions h2 {
        font-size: 20px;
    }
    #cryptogigTransactions th,
    #cryptogigTransactions td {
        font-size: 12px;
        padding: 8px;
    }
}

/* Energy Link Section */
#energyLinkSection input[readonly] {
    background-color: #f8f9fa;
    font-family: monospace;
    font-size: 14px;
}

#energyLinkSection {
    margin-top: 20px;
    text-align: center;
}

.copy-button {
    background-color: #20c497 !important;
    color: white !important;
    border: none !important;
    padding: 8px 12px !important;
    font-size: 14px !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: background-color 0.3s ease !important;
}

.copy-button:hover {
    background-color: #1aa67f !important;
}

#copyEnergyMessage {
    color: #20c497 !important;
    font-size: 14px !important;
    display: none;
    margin-left: 8px;
}