//IGNORE FOR NOW, CURRENTLY NOT USED IN SCRAPBOOK IMPLEMENTATION .scrapbook-slot { position: absolute; background-color: rgba(245, 245, 245, 0.7); border: 2px dashed #ccc; border-radius: 5px; box-sizing: border-box; transition: all 0.2s ease; overflow: hidden; &.scrapbook-slot-over { border-color: #4a90e2; background-color: rgba(74, 144, 226, 0.1); } &.scrapbook-slot-filled { border-style: solid; border-color: rgba(0, 0, 0, 0.1); background-color: transparent; &.scrapbook-slot-over { border-color: #4a90e2; background-color: rgba(74, 144, 226, 0.1); } } .scrapbook-slot-empty { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; } .scrapbook-slot-placeholder { text-align: center; color: #888; } .scrapbook-slot-title { font-weight: bold; margin-bottom: 5px; } .scrapbook-slot-instruction { font-size: 0.9em; font-style: italic; } .scrapbook-slot-content { width: 100%; height: 100%; position: relative; } .scrapbook-slot-controls { position: absolute; top: 5px; right: 5px; z-index: 10; opacity: 0; transition: opacity 0.2s ease; .scrapbook-slot-remove-btn { background-color: rgba(255, 255, 255, 0.8); border: 1px solid #ccc; border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 10px; &:hover { background-color: rgba(255, 0, 0, 0.1); } } } &:hover .scrapbook-slot-controls { opacity: 1; } }