
body, html {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.navbar .nav-link {
    margin: 0 10px;

}

.button-container {
    display: flex;
}

:root {
    scroll-behavior: initial;
}

#myBtn {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 2px solid #1B69DB;
    position: fixed;
    background: transparent;
    bottom: 60px;
    right: 30px;
    color: #1B69DB;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: .4s linear;
    -webkit-transition: .4s linear;
    display: flex;
    justify-content: center;
    align-items: center;
}

#myBtn.show{
    opacity: 1;
    visibility: visible;
}
#myBtn:hover{
    background: #1B69DB;
    color: #fff;
}

.contact-form-container {
    max-width: 800px;
    padding: 1.5rem;
    border-radius: 8px;
    margin: auto;
}

.privacy-notice {
    font-size: 0.9rem;
}

.faq-section {
    margin-top: 2rem;
    padding: 0 1rem;
}

.accordion {
    margin-top: 1rem;
}

.accordion-item {
    border: none;
    margin-bottom: 0.8rem;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-button {
    font-weight: bold;
    outline: none;
    box-shadow: none;
}

.accordion-button:focus {
    outline: none;
    box-shadow: none;
    border: none;
}


.accordion-button:not(.collapsed) {
    outline: none;
    box-shadow: none;
    border: none;
}

.accordion-body {
    font-size: 0.9rem;
}


.pool-container {
    padding: 1rem;
}

.mining-pools-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pool-item {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.pool-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.pool-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.coin-logo, .link-icon {
    width: 40px;
    height: auto;
}

.pool-logo {
    width: 150px;
    height: auto;
}

.pool-name {
    font-weight: bold;
}

.pool-fees {
    display: flex;
    gap: 10px;
}

.fee-item {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.deals-section {
    padding: 0.5rem;
    border-radius: 8px;
}

.deals-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.deals-table thead .table-header {
    border-radius: 8px;
}

.table-header th {
    padding: 0.75rem;
    font-weight: bold;
    text-align: left;
    white-space: nowrap;
}

.deals-table tbody td {
    padding: 0.75rem;
    font-size: 0.9rem;
    vertical-align: middle;
}

.contact-button {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

.flag-icon {
    width: 20px;
    height: auto;
    margin-right: 0.5rem;
}

.spec-details {
    display: flex;
    gap: 0.5rem;
}

.spec-separator {
    width: 1px;
    background-color: #D1D5DB;
    margin: 0 0.3rem;
    height: 1.2rem;
}

.contact-paragraph {
    font-size: 20px;
}

.contact-title {
    text-align: center;
    margin-bottom: 15px;
}

.featured-miners-section {
    text-align: center;
    padding: 20px;
    position: relative;
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.miner-carousel {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 10px;
    white-space: nowrap;
}

.miner-card {
    border-radius: 10px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    scroll-snap-align: start;
    flex: 0 0 auto;
}

.miner-image-container {
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.miner-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.profit-container {
    padding: 5px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 10px;
}

.profit-label {
    color: #FFFFFF;
}

.profit-value {
    font-weight: bold;
}

.profit-green {
    color: #03C586;
}

.profit-red {
    color: #FB603C;
}

.miner-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

.stat {
    padding: 8px;
    border-radius: 10px;
    flex: 1;
    margin: 0 5px;
    text-align: center;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-nav.prev {
    left: -30px;
}

.carousel-nav.next {
    right: -30px;
}

.circle-icon {
    width: 120px;
    height: 120px;
    transition: filter 0.3s ease;
}

.rotate-left {
    transform: rotate(180deg);
}

.carousel-nav.disabled .carousel-icon {
    filter: invert(20%) sepia(100%) saturate(5000%) hue-rotate(0deg) brightness(90%) contrast(100%);
}

.miner-table-container {
    width: 100%;
    max-width: 900px;
    margin: auto;
    padding: 5px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.miner-table-header {
    display: flex;
    justify-content: space-around;
    font-weight: bold;
    padding: 10px 0;
    border-radius: 10px;
}

.miner-header-title {
    flex: 1;
    text-align: center;
}

.miner-table-row {
    display: flex;
    justify-content: space-around;
    margin: 10px 0;
    padding: 15px;
    border-radius: 10px;
}

.miner-row-title {
    flex: 1;
    text-align: left;
    font-weight: normal;
    padding-right: 15px;
}

.miner-row-data {
    flex: 1;
    text-align: center;
    font-size: 18px;
    font-weight: normal;
}


.miner-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    overflow: hidden;
}


.miner-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.table-container .asictable th,
.table-container .asictable td {
    text-align: center;
    vertical-align: middle;
}

.table-container .asictable td:first-child,
.table-container .asictable th:first-child {
    text-align: left;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 40%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    pointer-events: none;
}

.table-container {
    border-radius: 12px;
    padding: 5px;
    margin: 10px auto;
    border: 1px solid;
}

.asictable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px;
}



.table-header-row th:first-child,
.miner-row td:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.table-header-row th:last-child,
.miner-row td:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.table-header-row th, .miner-row td {
    padding: 15px 10px;
}

.table-header-row th:first-child,
.miner-row td:first-child {
    text-align: left;

}

.table-container {
    border-radius: 12px;
    padding: 5px;
    margin: 10px auto;
    border: 1px solid;
}

.asictable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px;
}

.table-header-row {
    border-radius: 12px;
    cursor: pointer;
}

.miner-row {
    border-radius: 12px;
}

.table-header-row th:first-child,
.miner-row td:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.table-header-row th:last-child,
.miner-row td:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.table-header-row th, .miner-row td {
    padding: 15px 10px;
}

.table-header-row th:first-child,
.miner-row td:first-child {
    text-align: left;

}

footer {
    padding: 20px 0;
}

footer h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

footer p {
    font-size: 14px;
    line-height: 1.6;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-container a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    border-radius: 4px;
    border: none;
}

.newsletter-form button {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.footer-separator {
    border: 0;
    height: 1px;
    background: #E0E0E0;
    opacity: 0.5;
}

.footer-bottom {
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
}

.footer-bottom .algo-links a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom .algo-links a:hover {
    text-decoration: underline;
}

.rack-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    position: relative;
}

.rack {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    padding: 0 30px;
}

.slot img {
    width: 40px;
}

.slot img[src*="asic-miner.png"] {
    width: 70px;
}

.pillar.left {
    left: 0;
}

.pillar.right {
    right: 0;
}

.add-row-btn {
    padding: 5px 10px;
    margin-top: 10px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.add-row-btn:hover {
    background-color: #0056b3;
}

.remove-row-btn {
    padding: 5px 10px;
    margin-top: 10px;
    cursor: pointer;
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.remove-row-btn:hover {
    background-color: #cc0000;
}

.header-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.accordion, .accordion-item, .accordion-item.faq-item {
    width: 100% !important;
}

.accordion-button {
    min-width: 100% !important;
    display: flex;
    justify-content: flex-start;
    text-align: left;
    box-sizing: border-box;
    padding: 1rem;
}

.accordion-button::after {
    margin-left: auto;
}









.notification-container {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.notification .close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
}

.scrollable-dropdown {
    max-height: 20rem;
    overflow-y: auto;
}

.scrollable-dropdown::-webkit-scrollbar {
    width: 8px;
}

.delete-button {
    max-width: 3rem !important;
    border-radius: 20% !important;
    margin-left: 1rem !important;
}

.category-dropdown > .btn-secondary {
    margin-left: 1rem !important;
    padding-left: 0.7rem !important;
}

.search-input {
    border-radius: 12px !important;
}

.horizontal-row {
    max-width: 50vw;
    margin: 0 auto;
}

.product-info-container {
    font-family: 'Roboto', Arial, sans-serif;
    max-width: 600px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cooling-card {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.decorative-circle {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.cooling-icon {
    margin-right: 12px;
}

.card-title {
    margin: 0;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.recommendation-content {
    position: relative;
    z-index: 1;
    padding: 12px 16px;
    border-radius: 6px;
    margin-left: auto;
    margin-right: auto;
    width: 85%;
    text-align: center;
}

.recommendation-text {
    margin: 0;
    font-style: italic;
    font-size: 15px;
    line-height: 1.5;
}

.product-description-card {
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.description-title {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
}

.description-text {
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
    text-align: center;
    width: 100%;
}

