/* Reset some basic styles */
body, h1, h2, p, ul, li, nav, div, span, button {
    margin: 10;
    padding: 0;
    box-sizing: border-box;
}

/* Basic body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
}

/* Navigation bar styles */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: white;
    border-bottom: 1px solid #eaeaea;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-right img {
    height: 20px;
    margin-right: 10px;
}

.nav-right span {
    margin-right: 15px;
}

.cart {
    margin-right: 15px;
}

.trezor-btn {
    padding: 8px 15px;
    background-color: #005b4f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.trezor-btn:hover {
    background-color: #007060;
}

/* Main content styling */
.main-content {
    padding: 50px;
}

.welcome h1 {
    font-size: 36px;
    color: #005b4f;
}

.welcome p {
    font-size: 18px;
    margin: 20px 0;
}

.buttons {
    margin: 30px 0;
}

.download-btn, .web-btn {
    padding: 10px 20px;
    background-color: #005b4f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.web-btn {
    background-color: #dcdcdc;
    color: #333;
}

.version-info {
    margin-top: 20px;
    font-size: 14px;
    color: gray;
}

.coin-management {
    margin-top: 50px;
}

.coin-management h2 {
    font-size: 28px;
    color: #005b4f;
}

.coin-management p {
    margin: 10px 0;
    font-size: 16px;
}

.wallet-info {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.wallet-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.wallet-name {
    font-weight: bold;
}

.wallet-type {
    color: gray;
}

.coins-list ul {
    list-style: none;
}

.coins-list ul li {
    margin: 10px 0;
}

.wallet-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.wallet-summary span {
    font-size: 24px;
    font-weight: bold;
}

.actions button {
    padding: 8px 15px;
    background-color: #005b4f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}
footer body {
    font-family: Arial, sans-serif;
    background-color: #181818;
    color: #fff;
    margin: 0;
    padding: 0;
}

footer {
    background-color: #181818;
    padding: 20px 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #fff;
    padding-top: 10px;
    margin-top: 20px;
}

.social-icons a {
    margin-right: 10px;
}

.social-icons img {
    width: 20px;
    height: 20px;
}

.footer-bottom p {
    font-size: 12px;
    margin: 0;
}