@import "tailwindcss";

/* Simple background pattern */
.bg-pattern {
    background-color: #0f172a;
    background-image: radial-gradient(#1e293b 1px, transparent 1px);
    background-size: 20px 20px;
    color: #AfA7Aa;
}
.my-code-block {
    font-size: 0.9em;
    line-height: 1.25;
}
.my-code-section {
    border-radius: 0.75rem;
    background-color: rgb(209 213 219);
    border: 1px solid #A0A0A0;
    box-shadow: 8px 8px 5px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 10px 10px 5px 0px rgba(120, 120, 120, 0.5);
}
.my-code-section::before {
    /* Print code-description */
    content: attr(code-description, "");
    display: block;
    padding-left: 1.4em;
    padding-right: 1.4em;
    padding-top: 0.6em;
    padding-bottom: 0em;
    line-height: 1.4;
    background-color: var(--code-description-color, #bfdbfe);
    border-radius: 0.7em;
    color:  #6f676a;
}
.my-code-section div {
    padding-left: 1.4em;
    padding-right: 1.4em;
    padding-top: 0.6em;
    padding-bottom: 0em;
    line-height: 1.4;
}
.my-hovering-div {
    position: fixed;
    top: 2em;    /* Distance from top of browser window */
    right: 1em;  /* Distance from right of browser window */
    z-index: 50;  /* Ensures it stays on top of other content */
}
.my-italic-roboto {
    font-family: Roboto, Arial;
    color: #8D8486;
    text-align: left;
    margin-left: -0.5rem;
    margin-right: 1rem;
    margin-top: -0.5rem;
    font-style: italic;
    font-size: 0.8rem;
    line-height:1.3;
    letter-spacing: 0.02em;
}
.my_blue_links {
    color: #60a5fa; /* the same as text-blue-400 */
    text-decoration-line: underline; /* the same as underline */
    transition: color 0.15s ease-in-out;
}
.my_blue_links:hover {
    color: #1e40af; /* the same as text-blue-800; */ 
}
