body {
    font-family: 'Roboto', sans-serif;
    background-color: #00b0f0;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card {
    margin: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 8px;
}

.btn-orange {
    background-color: #ffc000;
}

.container {
    max-width: 1200px;
    margin: auto;
}

footer {
    position: fixed !important;
}

.input-group-append .btn {
    border-radius: 0 8px 8px 0;
}

.input-group {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    max-width: 500px;
    margin: auto;
}

    .input-group .form-control:focus {
        box-shadow: none;
    }

hr {
    border-top: 1px solid #343a40;
    margin: 40px 0;
}

.copy-button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

    .copy-button i {
        font-size: 1rem;
    }

.logo-container {
    text-align: center;
    margin-top: 20px;
}

    .logo-container img {
        max-width: 50%;
        height: auto;
    }

.mt-6 {
    margin-top: 6rem !important;
}

.counter {
    position: fixed; /* Make the counter fixed relative to the viewport */
    top: 80px; /* Adjust this value to control the vertical position */
    right: 150px; /* Position the counter 20px from the right edge */
    color: #F14997;
    background: linear-gradient(to right bottom,#fff 50%, #f9f9f9 51%);
    font-family: 'Comfortaa', cursive;
    text-align: center;
    width: 200px;
    padding: 20px 0 0;
    margin: 0 auto;
    border-radius: 50px 0;
    box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

    .counter .counter-icon {
        font-size: 45px;
        margin: 0 0 10px;
    }

    .counter h3 {
        font-size: 18px;
        font-weight: 700;
        text-transform: capitalize;
        margin: 0 0 20px;
    }

    .counter #counter-value {
        color: #fff;
        background: #ffc000;
        font-size: 40px;
        font-weight: 700;
        line-height: 40px;
        padding: 7px 0 3px;
        display: block;
    }

    .counter.blue {
        color: #0092CD;
    }

        .counter.blue .counter-value {
            background: linear-gradient(to right bottom, #06BBF4, #0092CD);
        }