.myButton {
    background-color: transparent;
    border-radius: 28px;
    border: 1px solid #17c5ff;
    display: inline-block;
    cursor: pointer;
    color: #17c5ff;
    font-family: Arial;
    font-size: 17px;
    padding: 16px 31px;
    text-decoration: none;
}

.myButton:hover {
    background-color: transparent;
}

.myButton:active {
    position: relative;
    top: 1px;
}:root {
    --cyan: #00E0FF;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #010d1f;
    color: var(--white);
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.token-info {
    background: linear-gradient(to bottom right, rgb(49, 85, 113), rgb(4, 34, 64));
    border-radius: 0.7rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    margin-bottom: 30px;
    }

.token-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.token-left {
    display: flex;
    align-items: center;
}

.token-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
    background-color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.token-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.token-name h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--cyan);
}

.token-address {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    word-break: break-all;
}

.token-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.detail-card {
    background-color: rgba(1, 13, 31, 0.5);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(0, 224, 255, 0.1);
}

.detail-card h4 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.detail-card p {
    font-size: 20px;
    font-weight: 600;
}

.highlight {
    color: var(--cyan);
}

.tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab {
    padding: 15px 25px;
    cursor: pointer;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.tab.active {
    color: var(--cyan);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--cyan);
}

.table-container {
    background: linear-gradient(to bottom right, rgb(29, 70, 105), rgb(4, 34, 64));
    border-radius: 0.9rem;
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    overflow: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(1, 13, 31, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

tr:last-child td {
    border-bottom: none;
}

.hash-cell {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.amount-cell {
    font-weight: 500;
}

.time-cell {
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.page-btn {
    background-color: #153b5c;
    border: 1px solid rgba(0, 224, 255, 0.3);
    color: var(--white);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover {
    background-color: rgba(0, 224, 255, 0.2);
}

.page-btn.active {
    background-color: var(--cyan);
    color: var(--dark-blue);
    font-weight: 600;
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 224, 255, 0.2);
    border-left-color: var(--cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.search-section {
    margin-bottom: 30px;
}

.search-container {
    display: flex;
    width: 100%;
    gap: 10px;
}

.search-container input {
    flex: 1;
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 28px;
    border: 1px solid rgba(23, 197, 255, 0.3);
    background-color: rgba(1, 13, 31, 0.5);
    color: var(--white);
    outline: none;
}

.search-container input:focus {
    border-color: var(--cyan);
}

.search-container button {
    min-width: 120px;
}

.wallet-address {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    word-break: break-all;
}

/* Add to your styles.css file */

.copy-address {
    display: flex;
    align-items: center;
    position: relative;
}

.copy-address p {
    margin-right: 10px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-btn {
    background: transparent;
    border: none;
    padding: 5px;
    cursor: pointer;
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.copy-btn:hover {
    opacity: 1;
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-tooltip {
    position: absolute;
    right: 30px;
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.copy-tooltip.show {
    opacity: 1;
}

@media (max-width: 768px) {
    .token-details {
        grid-template-columns: 1fr;
    }
    
    .token-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .myButton {
        align-self: flex-start;
    }
}