@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


body, html {
    height: 100%;
    margin: 0;
    overflow: hidden; 
    font-family: 'Roboto', sans-serif;
    background-color: #f7f7f7;
}

#canvas-container {
    width: 100%;
    height: 100%;
    cursor: grab;
    user-select: none;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05); /* Simulates the shadow-inner effect */
}

#description-box {
    width: 500px;
    height: 200px;
    max-width: 90%;
    max-height: 15%;
    background-color: #fafafa;
    border-radius: 16px;
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    margin: auto;
    border: 1px solid #a7a7a7;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dt-1 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.dt-2 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.dt-3 {
    font-size: 1em;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fafafa;
    border: 1px solid #a7a7a7;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

h1 {
    border-bottom: 3px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 2em;
}

h2 {
    color: #333;
    margin-top: 25px;
    font-size: 1.5em;
}

.faq-item {
    margin-bottom: 40px;
}

.question {
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.answer {
    color: #555;
    font-size: 0.95em;
}

.link-back {
    display: block;
    margin-top: 40px;
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
}

.link-back:hover {
    text-decoration: underline;
}
