.crypto-container {
    font-family: Arial, sans-serif !important;
    font-size: 16px !important;
    margin: 0;
    padding: 0;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    /*
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #dadbdb;
    color: #333;
    background: #fff;
    */
}

.crypto-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.crypto-header h1 {
    font-size: 24px;
    margin: 0;
}
.crypto-search-box {
    position: relative;
}
.crypto-search-box input {
    padding: 10px 15px;
    width: 250px;
    border-radius: 20px;
    line-height: 1 !important;
}
.crypto-table {
    width: 100%;
    border-collapse: collapse;
}
.crypto-table th, .crypto-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.crypto-table img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 10px;
}
.crypto-change-positive {
    color: green;
}
.crypto-change-negative {
    color: red;
}
.crypto-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.crypto-pagination button {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    background-color: #f1f1f1;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 5px;
}
.crypto-pagination button.active {
    background-color: #4a90e2;
    color: #fff;
}
.crypto-pagination button:hover {
    background-color: #ddd;
}

.table-footer {
    display: block; 
    text-align: right;
    font-size: 0.8rem;
    color: orange;
    margin-top: 5px; 
  }

  .table-footer a {
    color: orange;
    text-decoration: none;
  }

  .table-footer a:hover {
    text-decoration: underline;
  }