.cidgen-box, .cidgen-dashboard {
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.cidgen-box h3, .cidgen-dashboard h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.cidgen-box form input[type="text"],
.cidgen-box form input[type="email"],
.cidgen-box form input[type="number"] {
    width: 90%;
    padding: 10px;
    margin: 5px 0;
    font-size: 16px;
    border: 1px solid #bbb;
    border-radius: 5px;
}

.cidgen-box form button,
.cidgen-dashboard form button {
    background-color: #007cba;
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.cidgen-box form button:hover {
    background-color: #005b9f;
}

.cid-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.cid-table th, .cid-table td {
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 14px;
}

.cid-table th {
    background: #f1f1f1;
}

.success {
    color: green;
    text-align: center;
}

.error {
    color: red;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .cid-table, .cid-table thead, .cid-table tbody, .cid-table th, .cid-table td, .cid-table tr {
        display: block;
        width: 100%;
    }

    .cid-table tr {
        margin-bottom: 15px;
    }

    .cid-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .cid-table td::before {
        position: absolute;
        top: 10px;
        left: 10px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }

    .cid-table td:nth-of-type(1)::before { content: "Installation ID"; }
    .cid-table td:nth-of-type(2)::before { content: "Confirmation ID"; }
    .cid-table td:nth-of-type(3)::before { content: "Generated At"; }
}
