/* 
 * Artisan Full CSS 
 * Colors:
 * Toronto blue #0099cc
 * Link blue #003399
 * Primary blue #16769B
 */

/* ===== RESET & BASE STYLES ===== */
body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

a img { border: none; }
p, h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; }
p { padding-bottom: 7px; line-height: 1.2em; }
input { font-size: 14px; }
input::placeholder { color: #D4D4D4; font-size: 14px; }

/* ===== LAYOUT & CONTAINERS ===== */
.group:after {
  content: "";
  display: table;
  clear: both;
}

.clearfix:after { 
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; }
.clearfix { display: block; }

#container { 
  text-align: left; 
  margin: 0 auto; 
  max-width: 850px; 
}

#content { 
  text-align: left; 
  margin: 30px; 
}

main { 
  margin: 0 20px; 
  width: 100%; 
}

/* ===== HEADER & NAVIGATION ===== */
header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  background-color: #000; 
  color: #fff; 
  padding: 10px 20px; 
}

/* New header layout for welcome page */
.header-layout {
  background-color: #000; 
  color: #fff; 
  padding: 20px;
  position: relative;
  min-height: 120px;
}

.logo-section {
  text-align: center;
  margin-bottom: 20px;
}

.nav-section {
  position: absolute;
  bottom: 10px;
  left: 20px;
}

.user-info {
  font-size: 14px;
  color: #fff;
  position: absolute;
  bottom: 10px;
  right: 20px;
}
.user-info .placeholder-text {color: orange;font-size: 2rem}

.admin-back {
  position: absolute;
  bottom: 10px;
  right: 20px;
  z-index: 10;
}

/* When admin is viewing other profile, move user-info up */
.header-layout.admin-viewing .user-info {
  bottom: 50px;
}

.nav { 
  display: flex; 
  width: 100%; 
}

.logo img { 
  width: 210px; 
  max-width: 200px; 
}

ul.menu { 
  list-style: none; 
  display: flex; 
  margin-bottom: 0px; 
  justify-content: flex-start;
}

ul.menu li { 
  margin-left: 8px; 
}

ul.menu li.comptix, 
ul.menu li.reminder { 
  margin-left: 0px; 
}

.menu span { 
  text-transform: uppercase; 
  color: black; 
  display: inline-block; 
}

/* ===== ADMIN SPECIFIC STYLES ===== */
.admin-container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 20px; 
}

.show-selector {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
}

.show-selector h3 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 18px;
}

.show-selector p {
  margin: 0;
  color: #666;
}

.quick-links {
  text-align: center;
}

.card { 
  background: white; 
  border: 1px solid #ddd; 
  border-radius: 8px; 
  padding: 20px; 
  margin: 20px 0; 
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
}

.card h3 { 
  margin-top: 0; 
  color: #333; 
  border-bottom: 2px solid #007bff; 
  padding-bottom: 10px; 
}

.two-column { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 20px; 
  margin: 20px 0; 
}

.full-width { 
  grid-column: 1 / -1; 
}

/* ===== FORMS ===== */
.form-group { 
  margin-bottom: 15px; 
}

.form-group label { 
  display: block; 
  margin-bottom: 5px; 
  font-weight: bold; 
  color: #555; 
}

.form-group input, 
.form-group select, 
.form-group textarea { 
  width: 100%; 
  padding: 10px; 
  border: 1px solid #ddd; 
  border-radius: 4px; 
  font-size: 14px; 
}

.inputfullwidth { 
  width: 100%; 
}

/* ===== ADMIN PAGE HEADERS ===== */
.header-center {
  text-align: center;
  margin-bottom: 30px;
}

.logo-center {
  margin-bottom: 10px;
  max-width: 200px;
}

.text-right {
  text-align: right;
}

/* ===== GUIDELINES & NOTES ===== */
.guidelines, .instructions, .notes {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 12px 16px;
  margin: 15px 0;
  font-size: 13px;
  color: #6c757d;
  line-height: 1.5;
}

.guidelines h4, .instructions h3, .instructions h4, .notes h4 {
  margin: 0 0 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: #495057;
}

.guidelines ul, .instructions ul, .notes ul {
  margin: 8px 0 0 0;
  padding-left: 16px;
}

.guidelines li, .instructions li, .notes li {
  margin: 4px 0;
  font-size: 13px;
}

.guidelines strong, .instructions strong, .notes strong {
  color: #495057;
  font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn { 
  display: inline-block;
  padding: 10px 20px; 
  background-color: white;
  border: 1px solid #7b7b7b;
  border-radius: 4px; 
  cursor: pointer; 
  font-size: 14px; 
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  margin: 5px; 
  transition: all 0.2s ease;
  line-height: 1.4;
  color: #167698;
}

.btn:hover { 
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn:disabled { 
  opacity: 0.6; 
  cursor: not-allowed;
  transform: none;
}
.btn-current {font-weight: 900;}
/* Button Colors - REMOVED - All buttons are now white */

/* Clean simple layout - no fancy colors */
.header-logo {
    width: 190px;
    margin: 29px;
}

.page-title {
    margin: 0 0 20px 0;
}

.logout-button {
    float: right;
    margin: 20px 20px 0 0;
}

.nav-buttons {
    margin: 20px 0;
}

.nav-buttons .btn {
    margin-right: 10px;
}

/* Admin Config specific styles */
.form-margin-bottom {
    margin-bottom: 20px;
}

.card-summary {
    background: #f8f9fa;
    border-left: 4px solid #007bff;
}

.card-summary h3 {
    margin-top: 0;
    color: #007bff;
}

.form-right-align {
    text-align: right;
    margin-top: 15px;
}

.show-item {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.show-item-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.show-item-radio {
    margin-right: 10px;
}

.show-item-content {
    flex-grow: 1;
}

.show-item-radio input {
    margin-right: 5px;
}

.show-dates {
    display: flex;
    gap: 15px;
    align-items: center;
}

.date-label {
    font-size: 12px;
    color: #666;
    display: block;
    margin-bottom: 2px;
}

.date-input {
    width: 150px;
    font-size: 12px;
}

.inline-label {
    display: inline-block;
    margin-left: 5px;
}

.hidden-form {
    display: none;
}

/* Admin Config specific styles - moved from inline styles */
.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 3px;
}

.form-section {
    margin-bottom: 30px;
}

/* Social Media Drag & Drop Styles */
.social-media-manager {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.social-media-list {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    min-height: 200px;
    background-color: #f8f9fa;
}

.social-media-list h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.social-media-item {
    display: flex;
    align-items: center;
    background-color: #007bff;
    color: white;
    padding: 8px 12px;
    margin: 5px 0;
    border-radius: 6px;
    font-size: 14px;
    cursor: move;
    transition: all 0.2s ease;
}

.social-media-item:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

.social-media-item.dragging {
    opacity: 0.5;
    transform: rotate(5deg);
}

.social-media-item.available {
    background-color: #6c757d;
}

.social-media-item.available:hover {
    background-color: #545b62;
}

.drag-handle {
    margin-right: 8px;
    cursor: grab;
}

.drag-handle:active {
    cursor: grabbing;
}

.social-media-list.drag-over {
    border-color: #007bff;
    background-color: #e7f3ff;
}

.edit-social-media {
    background: none;
    border: none;
    color: white;
    padding: 2px;
    margin-left: 8px;
    cursor: pointer;
    border-radius: 3px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.edit-social-media:hover {
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

@media (max-width: 768px) {
    .social-media-manager {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Form validation styles */
.form-control.error {
    border-color: #dc3545;
}

.form-control.valid {
    border-color: #28a745;
}

/* Legacy support */
a.button { 
  display: inline-block;
  padding: 10px 20px; 
  background-color: #167698; 
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  
}

a.button:hover { 
  opacity: 0.9;
  transform: translateY(-1px);
  color: white;
}

/* ===== ALERTS & MESSAGES ===== */
.alert { 
  padding: 15px; 
  margin: 15px 0; 
  border-radius: 4px; 
}

.alert-success { 
  background-color: #d4edda; 
  border: 1px solid #c3e6cb; 
  color: #155724; 
}

.alert-error { 
  background-color: #f8d7da; 
  border: 1px solid #f5c6cb; 
  color: #721c24; 
}

.alertbox { 
  padding: 4px; 
  border: 1px solid #FF0008; 
  color: #E40615; 
  margin: 7px 0; 
}

.alertbox a:link, 
.alertbox a:visited { 
  color: #E40615; 
  text-decoration: underline; 
  font-weight: bold; 
}

.alertbox a:hover { 
  color: #666; 
}

.notice { 
  margin-top: 20px; 
  border: 1px solid #ccc; 
  padding: 10px; 
  font-size: 100%; 
  color: #555555; 
  line-height: 1.3em; 
  font-style: normal; 
  margin-top: 0; 
}

.notice strong { 
  color: #16769B; 
  font-weight: 700; 
  text-transform: uppercase; 
}

.warning { 
  color: orange; 
}

.pleasenote { 
  color: orange; 
}

/* ===== TABLES ===== */
table { 
  border-collapse: collapse; 
  width: 100%; 
  margin: 20px 0; 
}

th { 
  cursor: pointer; 
  background-color: #f8f9fa; 
  padding: 12px 8px; 
  text-align: left; 
  font-weight: 600; 
  border-bottom: 2px solid #dee2e6; 
}

td { 
  padding: 10px 8px; 
  border-bottom: 1px solid #dee2e6; 
  vertical-align: top; 
}

tbody tr:hover { 
  background-color: #f8f9fa; 
}

tbody tr:nth-child(even) { 
  background-color: #f8f9fa; 
}

/* Legacy table support */
table.tablesorter { 
  font-family: inherit; 
  font-size: 14px; 
  color: #333; 
}

table.tablesorter thead tr th { 
  background-color: #f8f9fa; 
  font-size: 14px; 
  padding: 12px 8px; 
  border: none; 
  border-bottom: 2px solid #dee2e6; 
}

table.tablesorter tbody td { 
  color: #333; 
  padding: 10px 8px; 
  border: none; 
  border-bottom: 1px solid #dee2e6; 
  background-color: transparent; 
}

table.tablesorter tbody tr.odd td { 
  background-color: #f8f9fa; 
}

/* ===== PHOTO MANAGEMENT & GALLERY ===== */
.photo-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
  gap: 15px; 
  margin: 20px 0; 
}

.photo-item { 
  border: 1px solid #e0e0e0; 
  border-radius: 8px; 
  background: white; 
  position: relative;
  cursor: grab;
  transition: all 0.2s ease;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.photo-item:active {
  cursor: grabbing;
}

.photo-item:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
}

.photo-item.dragging { 
  opacity: 0.6; 
  transform: rotate(2deg); 
}

/* Photo type indicators */
.photo-item.grid-photo { 
  border-left: 4px solid #007bff;
}

.photo-item.profile-photo { 
  border-left: 4px solid #28a745;
}

.photo-item.product-photo { 
  border-left: 4px solid #6c757d;
}

.photo-type-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 5;
}

.grid-photo .photo-type-badge { background: #007bff; }
.profile-photo .photo-type-badge { background: #28a745; }
.product-photo .photo-type-badge { background: #6c757d; }

.photo-item img { 
  width: 100%; 
  height: 200px; 
  object-fit: cover; 
  display: block;
}

.photo-controls { 
  padding: 12px; 
  text-align: left; 
}

.photo-actions { 
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 4px;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  opacity: 0.8;
  z-index: 10;
}

.edit-btn {
  background: rgba(255,255,255,0.9);
  color: #007bff;
}

.edit-btn:hover {
  background: #007bff;
  color: white;
  opacity: 1;
}

.delete-btn {
  background: rgba(255,255,255,0.9);
  color: #dc3545;
}

.delete-btn:hover {
  background: #dc3545;
  color: white;
  opacity: 1;
}

.edit-icon, .delete-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.photo-legend {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.legend-color {
  margin-right: 12px;
  border-radius: 2px;
}

/* Sortable styles */
.sortable-ghost {
  opacity: 0.4;
}

.sortable-chosen {
  transform: scale(1.05);
}

/* Legacy gallery support */
.oneproduct { 
  width: 200px; 
  padding: 9px; 
  border: 3px solid #999; 
  margin-right: 10px; 
  margin-top: 17px; 
}

.twoproduct { 
  width: 200px; 
  padding: 9px; 
  border: 1px solid #999; 
  margin-right: 10px; 
  margin-top: 17px; 
  float: left; 
}

.prodpic { 
  height: 200px; 
  width: 200px; 
  overflow: hidden; 
  margin-top: 10px; 
}

.prodpic img { 
  vertical-align: middle; 
}

.gallery { 
  cursor: move; 
}

.sortable-item { 
  margin-right: 34px; 
  border-radius: 3px; 
  padding: 13px; 
  border: 1px solid; 
  position: relative; 
  width: fit-content; 
}

.profilepic { 
  border: 3px solid #FFA500; 
}

/* ===== EDITING & CONTROLS ===== */
.edit, 
h4 input { 
  text-align: center; 
  text-transform: uppercase; 
  margin: 10px 0; 
  vertical-align: 5px; 
}

.edit a, 
.edit input, 
h4 input { 
  padding: 4px; 
  border: 1px solid #ccc; 
  background: #eee; 
  border-radius: 6px; 
}

h4 input { 
  background: #167698; 
  color: white; 
}

.imin input { 
  width: 26px; 
  height: 26px; 
}

.bi-trash { 
  position: relative; 
  bottom: 20px; 
  right: 20px; 
  padding: 5px; 
  background: orange; 
  border-radius: 16px; 
  color: white; 
  height: 20px; 
  width: 20px; 
}

.delbtn { 
  width: 30px; 
  padding: 0; 
  height: 30px; 
  background: orange; 
  border-radius: 20px; 
  position: absolute; 
  right: 15px; 
  bottom: 6px; 
}

.edbtn { 
  width: 30px; 
  padding: 0; 
  height: 30px; 
  background: green; 
  border-radius: 20px; 
  position: absolute; 
  left: 15px; 
  bottom: 6px; 
}

.updatepic { 
  padding: 1px 4px 3px; 
  border: 1px solid #999; 
  background: #e1e1e1; 
  margin: 4px 0; 
  border-radius: 4px; 
}

.picedit { 
  border-bottom: 3px solid #0099cc; 
  padding: 10px 0; 
}

/* ===== MODALS & OVERLAYS ===== */
.blockback { 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: rgba(0,0,0,0.4); 
  display: none; 
}

/* ===== LAYOUT COLUMNS ===== */
.col1 { 
  float: left; 
  width: 45%; 
  margin-right: 20px; 
}

.col2 { 
  float: right; 
  width: 45%; 
}

.full { 
  width: 100%; 
  margin-top: 20px; 
}

.span-24, 
div.span-24 { 
  margin: 0; 
  width: 100%; 
}

/* ===== SEARCH & FILTERS ===== */
#search { 
  margin: 10px 0; 
  border-top: 1px solid #fff; 
  border-bottom: 1px solid #fff; 
  background-color: #999; 
  padding: 10px; 
}

.searchtext { 
  font-weight: normal; 
  font-style: italic; 
}

/* ===== SIDE SECTIONS ===== */
.sidesection { 
  margin: 10px 0; 
  padding: 0 4px; 
  font-size: .9em; 
}

.sidesection2 { 
  margin: 10px 0; 
  border-bottom: 1px solid #666; 
  font-size: .9em; 
}

.sidesection ul { 
  list-style-type: none; 
  padding: 0; 
}

.sidesection ul ul { 
  padding-left: 1px; 
}

.sidesection ul li { 
  line-height: 22px; 
  font-weight: bold; 
  padding-bottom: 4px; 
}

.sidesection ul li a { 
  font-weight: normal; 
}

.sidesection ul li a.active { 
  font-weight: bold; 
  color: #0099cc; 
}

.sidesection h1 { 
  font-size: 14px; 
  margin: 0; 
  padding: 0; 
}

.sidesection2 p { 
  margin: 7px 0; 
}

/* ===== CONTENT AREAS ===== */
#middle h1 { 
  font-size: 1.5em; 
  margin-bottom: 12px; 
}

#middle h2 { 
  font-size: 1.2em; 
  margin-bottom: 6px; 
  margin-top: 20px; 
}

#middle p { 
  margin-bottom: 7px; 
}

#middle ul { 
  margin: 0; 
  padding-left: 14px; 
}

#middle h4 { 
  margin-top: 40px; 
}

#middle .yourshowspad h4 { 
  font-size: 29px; 
  font-weight: bold; 
  color: #16769B; 
  margin: 10px 0 7px 0; 
  text-transform: uppercase; 
}

/* ===== HOME PAGE ===== */
#homecontainer { 
  background-color: #FFF; 
  background-image: url(../images/ooakartisan_frontpage_bkg.gif); 
  background-repeat: repeat-x; 
  font-size: 18px; 
}

#homecontent { 
  text-align: right; 
  margin: 0px auto; 
  width: 760px; 
}

#homebanner { 
  background-color: #cfcfc2; 
  margin-bottom: 40px; 
}

#homecontainer h1 { 
  color: #666633; 
  font-size: 20px; 
  margin: 0 0 20px; 
}

#homecontainer h2 { 
  color: #000000; 
  font-size: 16px; 
  margin: 0; 
}

#homecontainer h3 { 
  color: #0099cc; 
  font-size: 18px; 
  margin: 0; 
}

#homecontainer h4 { 
  color: #333399; 
  font-size: 18px; 
  margin: 0; 
}

#homecontainer p { 
  margin: 0 0 40px; 
}

/* ===== LOGIN PAGE ===== */
.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.login-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 100%;
  max-width: 400px;
}

.login-header {
  margin-bottom: 30px;
  text-align: center;
}

.login-header .logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.login-header h1 {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.login-header p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.login-form {
  text-align: left;
}

.login-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e1e5e9;
  text-align: center;
}

.login-footer a {
  color: #667eea;
  text-decoration: none;
  font-size: 14px;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.login-footer a:hover {
  color: #764ba2;
}

/* Legacy login support */
.login { 
  max-width: 350px; 
  margin: 0 auto; 
  text-align: center; 
}

/* ===== COUPONS ===== */
#couponcontainer { 
  font-size: 1.2em; 
  line-height: 1.2em; 
}

#couponcontainer img { 
  margin: 10px 0 20px; 
  border: 2px solid #ccc; 
}

.couponcontainer p { 
  line-height: 19px; 
}

/* ===== USER INFO ===== */
.loggedinas { 
  text-align: right; 
  font-weight: 300; 
  color: #666; 
  font-size: 17px; 
}

.customername { 
  width: 40%; 
}

/* ===== PRODUCT RANKING ===== */
.rankdiv, 
.includeinshow, 
.productpic { 
  float: left; 
  padding: 7px 10px; 
  height: 120px; 
  border-bottom: 5px solid white; 
}

.rankdiv { 
  border-left: 1px solid #F0F0F0; 
  background: #E6E6E6; 
  padding-right: 10px; 
  width: 40px; 
  border-right: 1px solid #F0F0F0; 
}

.includeinshow { 
  float: left; 
  padding-right: 10px; 
  border-left: 1px solid #F0F0F0; 
  width: 40px; 
  text-align: center; 
  background: #F0F0F0; 
}

.productpic { 
  border-left: 1px solid #F0F0F0; 
  width: 430px; 
  border-bottom: 5px solid #F5F5F5; 
}

.rankdivhead { 
  background: transparent; 
  width: 40px; 
  float: left; 
  padding: 0 0px; 
  border-bottom: 5px solid white; 
  text-transform: uppercase; 
  line-height: 12px; 
  font-size: 12px; 
}

.includeinshowhead { 
  width: 63px; 
  background: transparent; 
  float: left; 
  padding: 0 0px; 
  border-bottom: 5px solid white; 
  text-transform: uppercase; 
  line-height: 12px; 
  font-size: 12px; 
}

input.order { 
  float: left; 
  margin-right: 10px; 
  text-align: center; 
  font-size: 15px; 
  font-weight: 700; 
  height: 30px; 
  width: 30px; 
}

/* ===== LINKS & TYPOGRAPHY ===== */
a, 
a:link, 
a:visited { 
  color: #16769B; 
  text-decoration: none; 
}

a:hover { 
  color: #999; 
  text-decoration: none; 
}

.bold { 
  font-weight: 700; 
  letter-spacing: .07rem; 
}

.center { 
  text-align: center; 
}

#leftside a:link, 
#leftside a:visited { 
  color: #666; 
  text-decoration: none; 
}

#leftside a:hover { 
  color: #999; 
  text-decoration: none; 
}

/* ===== SPECIAL ELEMENTS ===== */
.conditions { 
  padding: 10px; 
  border: 1px solid #008000; 
  margin: 30px 30px 0; 
  line-height: 1.2em; 
  width: calc(100% - 490px); 
  float: right; 
  top: 20px; 
}

.originfo { 
  line-height: 1.2em; 
}

.proddeets { 
  padding: 20px; 
  text-align: left; 
}

.proddeets textarea { 
  width: 100%; 
  margin-top: 20px; 
}

.onlinestoreexample { 
  color: #aaa; 
}

.onlinestoreexample span { 
  font-style: italic; 
  color: #555; 
}

.caption { 
  height: 40px; 
  overflow: hidden; 
}

#upcoming { 
  margin: 10px 0; 
  padding: 10px; 
}

#tickets { }

.comptix { 
  padding: 2px 5px 2px 7px; 
  background: yellow; 
}

/* ===== REMINDERS ===== */
.reminder { 
  border: 1px solid #16769B; 
  padding: 2px 5px 2px 7px; 
  text-align: left; 
  margin: 0 0px 5px !important; 
}

.reminder2 { 
  border: none; 
  background: #003399; 
  color: white; 
  padding: 3px; 
  text-align: center; 
  margin-top: 4px; 
}

.reminder2 a { 
  color: white; 
}

.reminder2 a:hover, 
.reminder2 a:focus { 
  color: #ccc; 
}

/* ===== SPECIAL STYLES ===== */
.new { 
  color: orange; 
}

.snap { 
  padding: 4px; 
  border: 1px solid #c3e; 
  font-weight: 700; 
  line-height: 46px; 
}

.smaller { 
  font-size: 10px; 
}

.newbox { 
  padding: 9px; 
  border: 2px orange solid; 
  margin: 4px 0; 
}

.newboxnew { 
  padding: 3px; 
  color: white; 
  background: orange; 
  width: 70px; 
  text-align: center; 
  text-transform: uppercase; 
  font-weight: bold; 
  height: 100%; 
  margin-right: 5px; 
}

.stepnos { 
  font-size: 22px; 
  font-weight: bold; 
  color: #FF283D; 
}

.infobox { 
  margin-top: 20px; 
  border: 1px solid #ccc; 
  padding: 10px; 
  font-size: 100%; 
  color: #555555; 
  line-height: 100%; 
  font-style: normal; 
  margin-top: 0; 
}

#result_div { 
  border: 1px solid #ccc; 
  background: #eaeaea; 
}

.maincontent img { 
  max-width: 300px; 
}

#wenoticed { 
  padding: 20px; 
  max-width: 400px; 
  height: 350px !important; 
}

#wenoticed p { 
  margin: 10px 0; 
}

.whatsnewbox { 
  margin-top: 8px; 
}

.whatsnewdate { 
  font-weight: bold; 
}

.more { 
  margin-top: 8px; 
  font-style: italic; 
  text-align: right; 
}

.breadcrumbs { 
  margin-bottom: 20px; 
}

/* ===== PASSWORD MANAGER SPECIFIC ===== */
.stats-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 15px; 
  margin: 20px 0; 
}

.stat-item { 
  background: #f8f9fa; 
  padding: 15px; 
  border-radius: 8px; 
  text-align: center; 
}

.stat-number { 
  font-size: 24px; 
  font-weight: bold; 
  color: #007bff; 
}

.stat-label { 
  font-size: 14px; 
  color: #666; 
  margin-top: 5px; 
}

.password-display { 
  background: #e9ecef; 
  padding: 15px; 
  border-radius: 4px; 
  font-family: monospace; 
  font-size: 16px; 
  border: 2px solid #007bff; 
}

.token-display { 
  background: #fff3cd; 
  padding: 15px; 
  border-radius: 4px; 
  font-family: monospace; 
  font-size: 12px; 
  border: 2px solid #ffc107; 
  word-break: break-all; 
}

.password-strength { 
  margin-top: 10px; 
}

.strength-weak { 
  color: #dc3545; 
}

.strength-medium { 
  color: #ffc107; 
}

.strength-strong { 
  color: #28a745; 
}

.strength-very-strong { 
  color: #007bff; 
}

.requirements { 
  margin-top: 10px; 
  font-size: 12px; 
}

.req-met { 
  color: #28a745; 
}

.req-unmet { 
  color: #dc3545; 
}

.user-info { 
  margin: 15px 0; 
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .two-column { 
    grid-template-columns: 1fr; 
    gap: 15px; 
  }
  
  .admin-container { 
    max-width: 100%; 
    padding: 10px; 
  }
  
  .col1, 
  .col2 { 
    float: none; 
    width: 100%; 
    margin-right: 0; 
  }
  
  .conditions { 
    width: 100%; 
    float: none; 
    margin: 20px 0; 
  }
  
  .login-box {
    padding: 30px 20px;
  }
  
  .header-layout {
    padding: 15px;
    min-height: auto;
  }
  
  .logo-section {
    margin-bottom: 15px;
  }
  
  .nav-section {
    position: static;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .user-info {
    position: static;
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
  }
  
  .admin-back {
    position: static;
    text-align: center;
    margin-top: 10px;
  }
  
  ul.menu {
    justify-content: center;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.float-right { float: right; }
.float-left { float: left; }
.clear-both { clear: both; }
.display-flex { display: flex; }
.width-100 { width: 100%; }
.max-width-200 { max-width: 200px; }

/* Spacing utilities */
.margin-top-8 { margin-top: 8px; }
.margin-top-30 { margin-top: 30px; }
.margin-top-40 { margin-top: 40px; }
.margin-20 { margin: 20px 0; }
.margin-bottom-20 { margin-bottom: 20px; }
.margin-right-10 { margin-right: 10px; }
.margin-right-20 { margin-right: 20px; }
.margin-29 { margin: 29px; }
.line-height-20 { line-height: 20px; }
.width-190 { width: 190px; }
.vertical-align-4 { vertical-align: -4px; }
.backup-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.backup-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.backup-header img {
  max-width: 200px;
  margin-bottom: 20px;
}

.success { 
  color: #155724; 
  background: #d4edda; 
  padding: 15px; 
  border-radius: 8px; 
  border-left: 4px solid #28a745;
  margin: 20px 0;
}

.error { 
  color: #721c24; 
  background: #f8d7da; 
  padding: 15px; 
  border-radius: 8px; 
  border-left: 4px solid #dc3545;
  margin: 20px 0;
}

.warning { color: orange; background: #fff3cd; padding: 10px; border-radius: 5px; }
.info-box { background: #d1ecf1; border: 1px solid #bee5eb; color: #0c5460; padding: 10px; border-radius: 5px; margin: 10px 0; }
.section { margin: 20px 0; padding: 15px; border: 1px solid #ddd; border-radius: 5px; }