/* ======================================================
   Playdate.Pics Custom Stylesheet
   File: playdate.css
   Purpose: Shell CSS file with organized sections
   ====================================================== */


/* ======================================================
   1. Global Resets / Base
   ====================================================== */
/* Example: html, body, headings, links */


/* ======================================================
   2. Layout
   ====================================================== */
/* Wrapper, header, nav, footer, main-content */

/* ------------------------------------------- Dashboard */
.pd-dashboard { 
   display: grid; 
   grid-template-columns: 4fr 1fr; 
   gap: 1.5rem; 
   margin-top: 2rem; 
}
.pd-card { border-radius: 1rem; box-shadow: 0 2px 6px rgba(0,0,0,0.1); background: #fff; padding: 1rem; }
.pd-card h5 { margin-bottom: 1rem; font-weight: 600; }
.pd-action-tile { display: flex; flex-direction: column; align-items: center; justify-content: center; border: 2px dashed #ddd; border-radius: 1rem; padding: 1.5rem; cursor: pointer; transition: background 0.2s; margin-bottom: 1rem; }
.pd-action-tile:hover { background: #fff0ef; }
.pd-action-tile i { font-size: 2rem; margin-bottom: 0.5rem; color: #d9230f; }
.pd-album { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.pd-album img { width: 64px; height: 64px; object-fit: cover; border-radius: 0.5rem; }


/* ------------------------------------------- pd-two */
.pd-two {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 12px 0;
}
.pd-two .left,
.pd-two .right {
  flex: 1 1 320px;
  min-width: 280px;
}
.pd-two .right {
  border-left: 1px solid #e5e5e5;
  padding-left: 16px;
}
.pd-two .left ul,
.pd-two .right ul {
  margin: 0;
  padding-left: 18px;
}
.pd-two li {
  margin: 4px 0;
}

/* ------------------------------------------- Buttons */
.card-body .btn-sm + .btn-sm { margin-left: .25em; }

/* ======================================================
   3. Typography
   ====================================================== */
/* Font families, headings, paragraphs, lists */


/* ======================================================
   4. Navigation
   ====================================================== */
/* Navbar, dropdowns, sidebar */

.dropdown-item:focus, .dropdown-item:hover {
    color: #d9230f;
    text-decoration: none;
}


/* ======================================================
   5. Forms
   ====================================================== */
/* Input fields, textareas, checkboxes, radios, buttons */



/* ======================================================
   6. Tables
   ====================================================== */
/* Table base, striped, hover, responsive */


/* ======================================================
   7. Cards / Panels
   ====================================================== */
/* Card containers, headers, footers */


/* Tip Card */
.pd-card-tip {
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0;
    padding: 16px;
    background: #ffffff;
}

.pd-card-tip-head { /* not used */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: #fff3f3;
  border-radius: 10px 10px 0 0;
}

.pd-card-tip-title {
  font-weight: 600;
  font-size: 15px;
}

.pd-card-tip-body {
    padding: 0 12px;
    font-size: 14px;
    color: var(--pd-tip-text);
    border-left: 5px solid #c62828;
    margin: 12px;
}


.pd-card-tip .pd-tip-hide.btn {
  padding: 2px 8px;
  font-size: 13px;
  color: #d9230f;
  text-decoration: none;
}
.pd-card-tip .pd-tip-hide.btn:hover {
  text-decoration: underline;
  color: #c62828;
}

/* "?" Help icon — sits in the page title bar on the right */
.pd-tip-helpbox{
   position: relative;
   height: 0px;
   overflow: visible;
}

.pd-tip-help {
    position: absolute;
    right: 14px;
    top: -40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    color: #c62828;
    background: #fff;
    text-decoration: none;
    cursor: pointer;
}

.titlePage .pd-tip-help:hover {
  background: #fff3f3;
}

.d-none { display: none !important; }

.pd-two-heading {
   text-align: center;
   font-weight: 600;
}

/* ======================================================
   8. Modals / Overlays
   ====================================================== */
/* Custom modal windows, backdrops */


/* ======================================================
   9. Alerts / Notifications
   ====================================================== */
/* Success, error, warning messages */


/* ======================================================
   10. Dashboard Components
   ====================================================== */
/* Tiles, action buttons, user widgets */


/* ======================================================
   11. Media / Images
   ====================================================== */
/* Thumbnails, galleries, responsive images */


/* ======================================================
   12. Animations / Transitions
   ====================================================== */
/* Hover effects, fades, custom transitions */


/* ======================================================
   13. Utilities / Helpers
   ====================================================== */
/* Spacing, alignment, text helpers */


/* ======================================================
   14. Responsive (Media Queries)
   ====================================================== */
/* Breakpoints for mobile, tablet, desktop */

@media (max-width: 767px) {
  /* Mobile rules here */
}

@media (min-width: 768px) and (max-width: 991px) {
  /* Tablet rules here */
}

@media (min-width: 992px) {
  /* Desktop rules here */
}


