   #dragmatch {
       text-align: center;
   }
   
   .draggable {
       display: inline-block;
       background: #2c97a2;
       border: 1px solid #1d676f;
       color: #fff;
       border-radius: 6px;
       margin: 6px;
       cursor: grab;
       font-weight: bold;
   }
   
   .correct {
       background-color: #266527 !important;
       color: #fff;
       border: none !important;
   }
   
   .wrong {
       background-color: #9e2b23 !important;
       color: #fff;
       border: none !important;
   }
   
   #dropTop,
   #dropBottom,
   #dropLeft,
   #dropRight {
       position: relative;
       min-height: 60px;
       min-width: 60px;
   }
   
   #dropTop {
       grid-area: top;
   }
   
   #dropBottom {
       grid-area: bottom;
   }
   
   #dropLeft {
       grid-area: left;
   }
   
   #dropRight {
       grid-area: right;
   }
   
   #imageContainer {
       grid-area: image;
   }
   
   #optionsArea {
       margin: 20px 0;
       /* margin-top: 40px; */
       display: flex;
       flex-wrap: wrap;
       justify-content: center;
   }
   
   #submitBtn {
       margin-top: 20px;
       padding: 10px 20px;
       background-color: #DB3A00;
       font-size: 22px !important;
       padding: 6px 36px;
       border-radius: 9px !important;
   }
   
   #resultBox {
       display: none;
       background: #fff;
       padding: 20px;
       border-radius: 10px;
       margin-top: 30px;
       box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
       text-align: center;
   }
   
   table {
       width: 100%;
       border-collapse: collapse;
       margin-top: 10px;
   }
   
   th,
   td {
       border: 1px solid #ccc;
       padding: 8px;
   }
   
   th {
       background: #eee;
   }
   
   @media screen and (max-width: 767px) {
       #dragmatchImage {
           width: 125px;
       }
       #resultdragmatchImage {
           width: 120px;
       }
       #dragmatchWrapper {
           display: grid;
           grid-template-areas: "top top top" "left image right" "bottom bottom bottom";
           grid-template-columns: 100px auto 100px;
           justify-content: center;
           gap: 12px;
           margin-top: 30px;
       }
       #correctWrapper {
           display: grid;
           grid-template-areas: "top top top" "left image right" "bottom bottom bottom";
           grid-template-columns: 100px auto 100px;
           justify-content: center;
           gap: 12px;
           margin-top: 30px;
       }
       #resultdragmatchWrapper {
           display: grid;
           grid-template-areas: "top top top" "left image right" "bottom bottom bottom";
           grid-template-columns: 100px auto 100px;
           justify-content: center;
           gap: 12px;
           margin-top: 30px;
       }
       #resultcorrectWrapper {
           display: grid;
           grid-template-areas: "top top top" "left image right" "bottom bottom bottom";
           grid-template-columns: 100px auto 100px;
           justify-content: center;
           gap: 12px;
           margin-top: 30px;
       }
       .drop-zone {
           min-width: 80px;
           height: 40px;
           border: 2px solid #7e7e7ea6;
           background-color: #fff6ea;
           line-height: 40px;
           position: absolute;
           text-align: center;
           font-weight: bold;
           border-radius: 5px;
           padding: 0px 5px;
       }
       canvas {
           width: 100%;
           height: auto;
       }
       .draggable {
           padding: 6px 12px;
       }
   }
   
   @media screen and (min-width: 768px) {
       .draggable {
           padding: 10px 15px;
       }
       .result-ya #dragmatchImage {
           width: 150px;
       }
       #dragmatchImage {
           width: 250px;
       }
       #dragmatchWrapper {
           display: grid;
           grid-template-areas: "top top top" "left image right" "bottom bottom bottom";
           grid-template-columns: 150px auto 150px;
           justify-content: center;
           gap: 20px;
           margin-top: 30px;
       }
       #correctWrapper {
           display: grid;
           grid-template-areas: "top top top" "left image right" "bottom bottom bottom";
           grid-template-columns: 150px auto 150px;
           justify-content: center;
           gap: 20px;
           margin-top: 30px;
       }
       #resultdragmatchWrapper {
           display: grid;
           grid-template-areas: "top top top" "left image right" "bottom bottom bottom";
           grid-template-columns: 150px auto 150px;
           justify-content: center;
           gap: 20px;
           margin-top: 30px;
       }
       #resultcorrectWrapper {
           display: grid;
           grid-template-areas: "top top top" "left image right" "bottom bottom bottom";
           grid-template-columns: 150px auto 150px;
           justify-content: center;
           gap: 20px;
           margin-top: 30px;
       }
       .drop-zone {
           min-width: 120px;
           height: 40px;
           border: 2px solid #7e7e7ea6;
           background-color: #fff6ea;
           line-height: 36px;
           position: absolute;
           text-align: center;
           font-weight: bold;
           border-radius: 5px;
           padding: 0px 5px;
       }
       #resultdragmatchImage {
           width: 150px;
       }
   }
   
   .zone-correct {
       background: #16a34a !important;
       color: #fff !important;
       border-color: #0f7a36 !important;
   }
   
   .zone-wrong {
       background: #dc2626 !important;
       color: #fff !important;
       border-color: #a71d1d !important;
   }
   
   .result-block {
       margin: 30px 0;
   }
   
   .result-title {
       margin: 6px 0 10px;
       font-weight: 600;
   }
   
   #resultdropTop,
   #resultdropBottom,
   #resultdropLeft,
   #resultdropRight {
       position: relative;
       min-height: 60px;
       min-width: 60px;
   }
   
   #resultdropTop {
       grid-area: top;
   }
   
   #resultdropBottom {
       grid-area: bottom;
   }
   
   #resultdropLeft {
       grid-area: left;
   }
   
   #resultdropRight {
       grid-area: right;
   }
   
   #resultimageContainer {
       grid-area: image;
   }
   
   .btn-next {
       background-color: #DB3A00;
       font-size: 22px !important;
       padding: 6px 36px;
       border-radius: 9px !important;
   }
   /* --- Mobile-safe drag helpers --- */
   
   #dragmatchWrapper,
   #optionsArea,
   .drop-zone,
   .draggable {
       -webkit-user-select: none;
       user-select: none;
   }
   
   #dragmatchWrapper,
   #optionsArea {
       touch-action: none;
   }
   
   .draggable.hidden-used {
       display: none !important;
   }
   
   .drop-zone.filled {
       border-style: solid;
   }
   /* Floating ghost while dragging */
   
   .drag-ghost {
       position: fixed;
       padding: .4rem .6rem;
       border: 1px solid #ccc;
       border-radius: .5rem;
       background: #f9f9f9;
       box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
       pointer-events: none;
       z-index: 9999;
       transform: translate(-50%, -50%);
   }