/* styles.css */
body, html , .container-fluid{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    /* background-color: #f0a500; */
    color: #fff;
    min-height: 100vh;
}

.tab-content {
    height: 300px;
    padding: 40px 0px;
}
.container-fluid{
    padding: 3.75rem;
}
.nav-item{
    width: 50%;
}
.nav-tabs{
    justify-content: center;
    border-bottom: none;
    margin-top: 3rem;
    background: #5b5b5b;
    width: 500px;
    border-radius: 20px;
}
.nav-link{
    font-size: 3rem;
    text-decoration: none;
    width: 100%;
    color:white;
}
    .nav-link:hover{
        color: white !important;
        border:none !important;
}
.nav-link.active{
    background-color: #feb624 !important;
    color: #fff !important;
    border-radius: 10px;
    border:none !important;
}
.tab-pane{
    font-size: 3rem;
}
button.btn-orange{
    background-color: #feb624;
    width: 100%;
    color: #fff;
    padding: 2rem;
    border:none;
    margin: 2rem 0 ;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    left: 0;
    display: flex;
    justify-content: center;
    margin: 5rem 0 5rem 0 ;
}
.footer-cont{
    display: flex;
    justify-content: space-between;
    padding: 2rem 3.75rem;
    width: 500px;
    background :#5b5b5b;
}

.container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
}

.screen {
    width: 30%;
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.history-screen .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-screen .scan-button, .history-screen .create-button {
    background-color: #f0a500;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.history-list {
    margin-top: 20px;
}

.history-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.history-item img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.history-details p {
    margin: 0;
}

.scan-screen .scan-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.scan-screen .scan-icon img {
    width: 100px;
    height: 100px;
}

.scan-screen .start-button {
    background-color: #f0a500;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.qr-scan-screen .qr-scan-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.qr-scan-screen .qr-scan-container img {
    width: 200px;
    height: 200px;
}