﻿
body, html {
    padding: 0;
    margin: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

.header, .footer {
    background-color: #65BC94; /* Grön färg för header och footer */
    color: white;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    z-index: 1050;
}

.header {
    top: 0;
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer {
    bottom: 0;
}

.main-content {
    flex: 1;
    display: flex;
    padding-top: 140px; /* För att ge utrymme för header */
    padding-bottom: 60px; /* För att ge utrymme för footer */
}

.mainContent {
    background-color: white;
}

.sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-sidebar {
    position: fixed;
    left: 0;
    top: 250px;
}

.right-sidebar {
    position: fixed;
    right: 0;
    bottom: 230px;
}

.content {
    flex: 1;
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}

.pin-pad {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-circle {
    width: 100px; /* Explicitly setting the width to maintain uniform size */
    height: 100px; /* Explicitly setting the height to maintain uniform size */
    border-radius: 50%;
    font-size: 46px;
    margin: 11px; /* Adjusted margin for uniform spacing */
}

.d-flex.justify-content-center {
    flex-wrap: wrap; /* Allows buttons to wrap in the container */
}

.footer {
    padding: 25px 10px 25px 10px;
    align-self: stretch;
    display: flex;
    gap: 45px;
}

.felAnmalan {
    border-radius: 10px;
    background-color: var(--Red, #e37474);
    font-size: 16px;
    color: var(--White, #fdfdfd);
    font-weight: 700;
    letter-spacing: -0.32px;
    line-height: 129%;
    flex: 1;
    padding: 15px 15px;
    text-decoration: none;
}

.pin-login-text {
    border: none;
    text-align: center;
}

@media (max-width: 480px) {
    .left-sidebar, .right-sidebar {
        display: none;
    }
}
