body {
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    overflow: hidden;
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-container {
    width: 100%;
    max-width: 105px;
    aspect-ratio: 1;
    position: relative;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.text-center {
    text-align: center;
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 13px;
    /* margin-bottom: 0.5rem; */
    margin: 0;
    text-transform: uppercase;
}

.description {
    font-size: 1.125rem;
    margin: 5px;
}

.clipboard-text {
    font-size: 0.875rem;
    background-color: #f8f8f8;
    padding: 0.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    user-select: all;
    border: 1.5px solid;
    margin: 0;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn {
    font-size: 10px;
    padding: 4px 7px;
    border: 1px solid #d1d5db;
    background-color: white;
    color: #374151;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-transform: uppercase;
    font-weight: 700;
}

.btn:hover {
    background-color: #f3f4f6;
}

.upload-container {
    text-align: center;
}

.upload-text {
    color: #6b7280;
    margin-top: 0.5rem;
    font-size: 11px;
}
p.upload-text {
    font-size: 10px;
    margin: 6px;
}

.sticker-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.sticker {
    position: absolute;
    width: 150px;
    height: 150px;
    cursor: move;
    transition: box-shadow 0.2s;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

.sticker.resizing {
    cursor: se-resize;
}

.sticker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    padding: 0;
    margin: 0;
}

.sticker.dragging {
    z-index: 50;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.drop-zone {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background-color: rgba(59, 130, 246, 0.1);
    display: none;
    align-items: center;
    justify-content: center;
}

.drop-zone.active {
    display: flex;
    pointer-events: auto;
}

.drop-zone-text {
    font-size: 1.5rem;
    color: #3b82f6;
    padding: 2rem;
    background: white;
    border-radius: 0.5rem;
    border: 2px dashed #3b82f6;
}

