/**
 * ESLROK Favorites Page - Soft Gradient Design
 * 
 * This CSS enhances the favorites page with a beautiful soft gradient design
 * matching the Sakura theme. Apply only to /favorites page.
 * 
 * Color Palette (Sakura Theme):
 * - Purple: #a855f7
 * - Pink: #ec4899
 * - Blue: #3b82f6
 * - Background: #faf8ff
 */

/* ===== PAGE BACKGROUND ===== */
.msl_module_wrapper {
  padding: 2rem 0;
  max-width: 800px;
  margin: auto;
}

/* ===== ITEM CONTAINER ===== */
.myshortlist_item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.65) 100%);
  border: 2px solid rgba(168, 85, 247, 0.1);
  border-radius: 16px;
  margin-bottom: 12px;
  padding: 16px 20px;
  transition: all 0.2s ease-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.myshortlist_item:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* ===== TEXT WRAPPER ===== */
.myshortlist_text_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ===== ITEM LEFT (TITLE) ===== */
.myshortlist_item_left {
  flex: 1;
  min-width: 0;
}

.myshortlist_item_title {
  margin: 0;
  padding: 0;
}

/* ===== LINK STYLING ===== */
.myshortlist_link {
  color: #111827;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: block;
  word-break: break-word;
  transition: color 0.2s ease-out;
}

.myshortlist_item:hover .myshortlist_link {
  color: #a855f7;
}

/* ===== ITEM RIGHT (DELETE BUTTON) ===== */
.myshortlist_item_right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* ===== DELETE BUTTON ===== */
.delete_button {
  background-color: transparent !important;
  border: none !important;
  color: #d1d5db !important;
  padding: 8px !important;
  cursor: pointer;
  transition: all 0.2s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
}

.delete_button:hover {
  color: #dc2626 !important;
  background-color: rgba(220, 38, 38, 0.1) !important;
  border-radius: 8px;
}

.delete_button .fas {
  font-size: 16px;
}

/* ===== CLEARFIX ===== */
.myshortlist_clr {
  clear: both;
  display: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 640px) {
  .myshortlist_item {
    padding: 12px 16px;
    margin-bottom: 10px;
  }

  .myshortlist_text_wrapper {
    gap: 12px;
  }

  .myshortlist_link {
    font-size: 14px;
  }

  .delete_button {
    padding: 6px !important;
    min-width: 28px;
    min-height: 28px;
  }
}

.msl_toggleListsLink {
    float: right;
    font-size: 50px;
    margin-top: -26px;
    color: #eb8f8f !important;
}

ul.msl_lists_ul {
    margin-bottom: 50px;
    display: grid;
    box-shadow: none;
}
.msl_lists_ul {
    box-shadow: none;
}

.msl_available_lists_lbl {
    margin-bottom: 10px;
    font-size: 25px;
}
input#myshortlist_new_list_mi158 {
    width: 300px;
    margin: 10px 0px 0px 0px;
}
.myshortlist_item_page {
    margin-top: 20px;
    border-bottom: none !important;
}

input.myshortlist.button.clear_button.btn.btn-default {
    color: grey;
    text-decoration: underline;
}