/*html {
    font-size: 14px;
}*/

/*@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
    .custom-btn {
        height: auto;
        margin-bottom: 1rem;
    }

    h1 {
        margin-bottom: 1rem;
    }
}*/
.custom-btn {
    height: 40vh; 
}

h1 {
    margin-bottom: 10vh;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

/*body {
    margin-bottom: 60px;
}*/
/*body, html {
    height: 100%; 
    margin: 0; 
    padding: 0; 
}*/

.btn-block {
    width: 100%; 
}

.upload-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap; 
    overflow-x: auto; 
}

.upload-label {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}
  
.upload-label::after {
        content: '+';
        position: absolute; 
        width: 100%;
        height: 100%;
        line-height: 60px; 
        font-size: 24px;
        text-align: center;
        color: #808080; 
        z-index: 2;
}

.image-preview {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.upload-label::after {
    line-height: 60px; 
    text-align: center;
}

.image-preview {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-lg {
    padding: 1rem 2rem; 
    font-size: 1.5rem;
}

