#sb-cactus-album-app * {box-sizing: border-box;}
.album-container {background: #fff; border-radius: 15px; padding: 25px; width: 100%; max-width: 1000px; margin: 0px auto; color: #2C3502;}
.album-search-wrapper {margin-bottom: 20px; display: flex; justify-content: center;}
.album-search-input {width: 100%; max-width: 400px; padding: 12px 20px; border: 1px solid #7FA409; border-radius: 10px; font-family: 'Poppins'; outline: none; font-weight: 600;}
.album-tabs-wrapper {display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; background: #F9FBF2; padding: 15px; border-radius: 12px; margin-bottom: 25px; border: 1px solid #E9EFD1;}
.album-tab-btn {padding: 10px 20px; border: 1px solid #7FA409; border-radius: 10px; background: #fff; color: #4A5D05; font-family: 'Poppins'; font-weight: 700; cursor: pointer; transition: 0.3s;}
.album-tab-btn.active {background: #7FA409; color: #fff;}
.album-grid {display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px;}
.image-card {background: #fff; border: 1px solid #E9EFD1; border-radius: 12px; overflow: hidden; transition: 0.3s; position: relative;}
.image-card img {width: 100%; height: 200px; object-fit: cover; cursor: pointer;}
.image-info {padding: 10px; text-align: center; border-top: 1px solid #F9FBF2;}
.image-title {font-size: 0.8rem; font-weight: 600; color: #4A5D05; text-decoration: none; display: block;}
th:nth-child(1), td:nth-child(1) {white-space: nowrap;}
th:nth-child(2), th:nth-child(3), th:nth-child(4) {white-space: nowrap; width: max-content;}
td:nth-child(2), td:nth-child(3), td:nth-child(4) {white-space: nowrap; width: 1%; text-align: center;}
.cactus-name-link {color: #2C3502; text-decoration: none; font-weight: 700; border-bottom: 1px dotted #7FA409;}
.icon-btn {margin-left: 8px; cursor: pointer; font-size: 1.1rem; transition: transform 0.2s; display: inline-block; vertical-align: middle;}
.modal-overlay {display: none; position: fixed; z-index: 999999; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); backdrop-filter: blur(2px); align-items: center; justify-content: center;}
.modal-box {background: #fff; margin: 5% auto; padding: 30px; border-radius: 12px; width: 90%; max-width: 650px; position: relative; color: #333; box-shadow: 0 10px 40px rgba(0,0,0,0.2);}
#floating-cart-btn {position: fixed; top: 120px; right: 30px; width: 60px; height: 60px; background: #27ae60; color: #fff; border-radius: 50%; display: none; align-items: center; justify-content: center; z-index: 99999; box-shadow: 0 4px 15px rgba(0,0,0,0.2); cursor: pointer; border: 2px solid #fff;}
.switch {position: relative; display: inline-block; width: 34px; height: 18px; margin-right: 5px; vertical-align: middle;}
.switch input {opacity: 0; width: 0; height: 0;}
.slider {position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 20px;}
.slider:before {position: absolute; content: ""; height: 12px; width: 12px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%;}
input:checked + .slider {background-color: #7FA409;}
input:checked + .slider:before {transform: translateX(16px);}
.sold-icon {color: #F39C12;}
.dead-icon {color: #D32F2F;}
.cactus-note-area {border: 1px solid #E9EFD1; padding: 15px; min-height: 200px; border-radius: 10px; background: #fff; outline: none; line-height: 1.6; font-size: 0.95rem; margin-top: 10px;}
.cactus-note-area[contenteditable="true"]:focus {border-color: #7FA409;}
.cactus-admin-btn-group {margin-top: 20px; display: flex; gap: 10px; justify-content: flex-end;}
.cactus-btn-save {background: #27ae60; color: #fff; border: none; padding: 10px 25px; border-radius: 10px; cursor: pointer; font-family: 'Poppins'; font-weight: bold; transition: 0.2s;}
.cactus-btn-delete {background: #D32F2F; color: #fff; border: none; padding: 10px 25px; border-radius: 10px; cursor: pointer; font-family: 'Poppins'; font-weight: bold; transition: 0.2s;}
.cactus-btn-delete:hover {background: #B71C1C;}