body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-color: #f3f4f6;
}

#btnRefresh, #btnCrop, #croppieContainer, #croppedImage ,#btnFinish{
    display: none;
}

#btnRefresh, #btnCrop, #croppedImage {
    margin: auto;
}

input[type="file"]::file-selector-button {
    border-radius: 4px;
    padding: 0 16px;
    height: 40px;
    cursor: pointer;
    background-color: white;
    border: 1px solid rbga(0, 0, 0, 0.16);
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
    margin-right: 16px;
    transition: background-color 200ms;
}

input[type="file"]::file-selector-button:hover {
    background-color: #f3f4f6;
}

input[type="file"]::file-selector-button:active {
    background-color: #e5e7eb;
}

button {
    background-color: #2ecc71;
    color: #444444;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
}

button:hover {
    background-color: #27ae60;
}

.cr-viewport {
    position: relative;
    background-image: url('../images/user-128.png');
    background-size: cover;
    /* Options: contain, cover, or specific dimensions */
    background-position: center;
    /* Center the background image */
    background-repeat: no-repeat;
    /* Prevent background from repeating */
    width: 200px;
    /* Set width */
    height: 200px;
    /* Set height */
}


.croppie-input-file-lable {
    margin-right: 20px;
    /* width: 100%; */
    border: none;
    background: #837568;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}