﻿.main-photo-placeholder-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 170px;
    height: 170px;
}

.other-photo-placeholder-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    margin: .5rem;
}

.other-photo {
    width: 120px;
    height: 120px;
    margin: .5rem;
}

.custom-file-button {
    display: inline-flex; 
    justify-content: center; 
    align-items: center; 
    width: 100%;
    height: 100%;
    padding: 10px;
    color: white;
    transition: transform .5s;
    cursor: pointer;
}

.main-photo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

    .main-photo-container i {
        font-size: 40px;
    }

    .main-photo-container:hover .custom-file-button {
        transform: scale(1.13);
    }

/* Styling for the photo preview */
.main-photo-preview {
    width: 170px;
    height: 170px;
    border-radius: 5px;
    padding: 2px
}


/* Hide the default file input */
.hidden-file-input {
    display: none;
}