body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: #f0f0f0;
    /* display: flex; */
    /* justify-content: center;
    align-items: center; */
    min-height: 100vh;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.logo {
    /* text-align: center; */
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
    margin-bottom: 20px;
}

.card {
    background-color: #e0e0e0;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* text-align: center; */
}

h2 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.button-group {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 30px;
}

.icon-button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    background-color: #ff3b30;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.icon-button i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.icon-button:hover {
    background-color: #ff5c5c;
}

.upload-group {
    display: flex;
    align-items: center;
    background-color: #ff3b30;
    border-radius: 15px;
    color: white;
    padding: 15px 25px;
    cursor: pointer;
    justify-content: space-between;
}

.upload-button {
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    flex-grow: 1;
}

.upload-icon {
    font-size: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .button-group {
        flex-direction: column;
    }

    .icon-button {
        flex-direction: row;
        justify-content: flex-start;
        padding: 15px 20px;
    }

    .icon-button i {
        margin-right: 15px;
        margin-bottom: 0;
    }
}
