/*
  This is the pocket genius css generated from rex.
  It looks like it heavily borrowed from bootstrap. which actually turned out for the best since we are using bootstrap 5!


*/
body {
    background-color: #1A1A1A;
    color: #E0E0E0;
    font-family: 'Courier New', Courier, monospace;
}

.container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 10px;
}

.header, .sidebar, .main-content {
    padding: 20px;
    border: 1px solid #4A4A4A;
    background-color: #262626;
}

/*
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #262626;
    border: 1px solid #4A4A4A;
    padding: 20px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #4A4A4A;
    padding-bottom: 10px;
}
*/
.close-button {
    background: none;
    border: none;
    color: #E0E0E0;
    cursor: pointer;
}

.close-button:hover {
    color: #F23645;
}

.modal-content {
    margin-top: 10px;
    background-color:#1f1b27;
}
.card {
    background-color:#1f1b27;
}
.modal-action {
    background-color: #00C076;
    border: none;
    color: #1A1A1A;
    padding: 5px 10px;
    cursor: pointer;
}

.modal-action:hover {
    background-color: #33D17A;
}
