body {
    font-family: 'San Francisco Pro', 'Helvetica', sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#companyCard {
    width: 300px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to bottom, #8e44ad, #673ab7);
    color: #fff;
    text-align: center;
    position: relative;
}

button {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    margin: 5px;
}

#swipeUp {
    background-color: #007bff;
    color: #fff;
}

#invest {
    background-color: #28a745;
    color: #fff;
}

#join {
    background-color: #dc3545;
    color: #fff;
}

#companyName {
    margin-top: 10px;
}

#buttonContainer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.invisible-swipe-area {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0; /* Make it invisible */
    pointer-events: auto; /* Allow it to capture touch events */
}

.left-swipe-area {
    width: 30%; /* Adjust the width based on your preference */
}

.right-swipe-area {
    width: 30%; /* Adjust the width based on your preference */
    right: 0;
}

.top-swipe-area {
    height: 30%; /* Adjust the height based on your preference */
}

.submit-btn {
    background-color: black;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.submit-btn:hover {
    background-color: black;
}