#cryptoRewards .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

#cryptoRewards #walletInput {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#cryptoRewards #walletError {
    color: red;
    margin-bottom: 10px;
    min-height: 20px;
}

#cryptoRewards #toggleRewards {
    background-color: #28a745;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s;
}

#cryptoRewards #toggleRewards.earning {
    background-color: #dc3545;
}

#cryptoRewards #toggleRewards:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

#cryptoRewards #toggleRewards #spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

#cryptoRewards #toggleRewards #iconPick {
    margin-right: 8px;
}

#cryptoRewards #timer {
    margin-top: 20px;
    font-size: 16px;
    color: #FFFFFF;
}

#cryptoRewardsButton {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px;
}

#cryptoRewardsButton #toggleRewardsButton {
    background-color: #28a745;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s;
}

#cryptoRewardsButton #toggleRewardsButton:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

#cryptoRewardsButton #toggleRewardsButton #spinnerButton {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

#cryptoRewardsButton #toggleRewardsButton #iconPickButton {
    margin-right: 8px;
}

#cryptoRewardsButton #timerButton {
    font-size: 14px;
    color: #FFFFFF;
}

#cryptogigTransactions {
    max-width: 800px;
    margin: 20px auto;
}

#cryptogigTransactions table {
    width: 100%;
    border-collapse: collapse;
    background-color: #382f6d; /* Dark purple background */
}

#cryptogigTransactions th, #cryptogigTransactions td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
    color: #FFFFFF; /* White text for readability */
}

#cryptogigTransactions th {
    background-color: #382f6d; /* Match table background */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}