@font-face {
    font-family: 'SF Pro';
    src: url('/fonts/sf-pro-text-regular-webfont.woff2') format('woff2'),
        url('/fonts/sf-pro-text-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro';
    src: url('/fonts/sf-pro-text-bold-webfont.woff2') format('woff2'),
        url('/fonts/sf-pro-text-bold-webfont.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro';
    src: url('/fonts/sf-pro-text-semibold-webfont.woff2') format('woff2'),
        url('/fonts/sf-pro-text-semibold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}



body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    max-width: 500px;
    margin: auto;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upload-area {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    width: calc(100% - 40px);
}

.upload-area input[type="file"] {
    display: none;
}

.upload-area label {
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

.color-area {
    position: relative;
    display: flex;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    width: calc(100% - 40px);
    justify-content: center;
}

/* .color-area input[type="color"],
.color-area label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */

.color-area input[type="color"] {
    /* width: 100%;
    height: 50px; */
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
}

.color-area label {
    /* color: #FFFFFF; */
    line-height: 50px;
    height: 50px;
    /* text-shadow: 1px 1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, -1px -1px 0 #000000, 1px 0px 0 #000000, 0px 1px 0 #000000, -1px 0px 0 #000000, 0px -1px 0 #000000; */
}

.date-area {
    border: 1px solid #ccc;
    position: relative;
    padding: 10px 20px;
    text-align: center;
    margin-bottom: 20px;
    width: calc(100% - 40px);
}

.date-area input[type="date"] {
    padding: 8px 25px;
    border: none;
    border-radius: 25px;
}

.mockup-selection,
.preview-area {
    margin-bottom: 20px;
}

.row{
    display: inline-flex;
}

.preview-area{
    width: 50%;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
}

canvas {
    max-width: 100%;
}

button {
    background-color: #008CBA;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}