.featured-program {
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: 20px;

    background-color: #dfcd94;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 10px;
}

.display-area {
    width: 100%;
    min-height: 10px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 15px;
}

.buttons-area , #search-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.buttons-area button, #search-area button {
    background-color: #f1b900;
    border: solid 1px #000;
    color: #000;
    width: 100%;
}
button:disabled {
    background-color: #ffe385;
    border-color: #999;
    color: #666;
    cursor: not-allowed;
}

.mongodb {
    color: #00684a !important;
    font-weight: 500 !important;
}
.prisma {
    color: #5f6bd9 !important;
    font-weight: 500 !important;
}