/* Custom styles for the MarkdownRenderer component */
.copy-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #055f84;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 1; /* Ensure the button stays on top of the code block */
}

.copy-button:hover {
    background-color: #044763;
}

.code-block-container {
    position: relative;
    padding-top: 10px; /* Adjust this padding if needed */
}


/* Markdown Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    color: #333;
}

th, td {
    padding: 8px 12px;
    border: 1px solid #ddd;
}

th {
    background-color: #f4f4f4;
    text-align: left;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}
