.content {
    height: 100%;
}

.enterspace-container {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: black;
    user-select: none;
    min-height: 100%;
}

.enterspace-btn {
    min-width: 100px;
    margin-top: 20px;
    padding: 12px 20px;
    background-color: green;
    color: white;
    border-radius: 20px;
    border-style: none;
    width: 10%;
}

.enterspace-btn:hover {
    background-color: darkgreen;
    cursor: pointer;
}

.enterspace-btn:active {
    transform: scale(0.98);
}


.action-section {
    margin: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-rows: auto;
    gap: 20px;
    min-height: 80%;
}

.question-card {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: black;
    user-select: none;
    min-height: 100%;
}