/* NORMAL PC WIDESCREEN SETTINGS (min-WIDTH: 1500px) */
@media (min-width: 1500px){
    

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*END OF CSS USED TO REMOVE BROWSER MARGINS!!!!!!!!!!!!!*/

/* =========================
   PAGE BACKGROUND
   ========================= */
body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;

  background-image: url(../../images/DISPLAY3/background_ipad.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   MAIN CONTAINER
   ========================= */
.AU_wrapper {
  width: 90vw;
  height: 90vh;

  background: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);

  position: relative;
  padding: 24px;
  overflow-y: auto;
}

/* =========================
   HEADER (TOP TITLE + HOME)
   ========================= */
.AU_pageTitle {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;       /* bottom-align with button */

  margin: 0; /* no spacing here */           /* gap above first widget */
  
}

/* Title inside header ONLY */
.AU_pageTitle .AU_titleText {
  font-size: 1.4rem;
  font-weight: bold;

  margin: 0;
  padding: 0;

  display: flex;               /* critical for bottom alignment */
  align-items: flex-end;
  line-height: 1;
}

/* =========================
   GENERAL SECTION TITLES
   ========================= */
.AU_titleText {
  font-size: 1.4rem;
  font-weight: bold;

  display: block;
  line-height: 1;

  margin: 0 0 1vh 0;           /* sits just above widgets */
}

/* =========================
   HOME BUTTON
   ========================= */
.AU_HomepageBox {
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;

  padding: 10px 14px;
  border-radius: 2vh;

  background: #373636;
  color: paleturquoise;
  border: 1px solid #cfcfcf;

  white-space: nowrap;
  line-height: 1;              /* prevents vertical drift */
  box-shadow: 0.3vh 0.3vh 0.2vh rgba(0, 0, 0, 0.2);
  position: relative;
  bottom: 1.4vh;   /* was 0.6vw — increase to move UP */
}

.AU_HomepageBox:active {
    transform: translate(0.1vh, 0.1vh);
}

.AU_HomepageBox:hover {
    color: lawngreen;
    box-shadow: 0.3vh 0.3vh 0.2vh rgba(0, 0, 0, 0.4);
}

/* =========================
   CONTENT FLOW
   ========================= */
.AU_reviewsContent {
  display: flex;
  flex-direction: column;
}

/* =========================
   WIDGET CONTAINERS
   ========================= */
.google_reviews,
.ebay_reviews {
  background: #ececec;         /* light grey widget background */
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #d0d0d0;
}

/* =========================
   GOOGLE REVIEW CTA
   ========================= */
.google_review_cta {
  text-align: center;
  margin: 1vh 0 3vh 0;
}

.AU_feedbackLink {
  color: #0056b3;
  text-decoration: none;
  font-weight: bold;
}

.AU_feedbackLink:hover {
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
  .AU_wrapper {
    width: 95vw;
    height: 95vh;
    padding: 16px;
  }

  .AU_pageTitle .AU_titleText,
  .AU_titleText {
    font-size: 1.2rem;
  }
}



/* Add Review button */
.AU_AddReviewButton {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;

  padding: 6px 12px;
  border-radius: 8px;

  background-color: #ececec;     /* widget-panel grey */
  color: #2f2f2f;

  border: 1px solid #cfcfcf;

  line-height: 1;
  white-space: nowrap;
  transition: background-color 120ms ease;
}

.AU_AddReviewButton:hover {
  background-color: #e0e0e0;
}

/* Title + button on one line (eBay section) */
.AU_titleGroup{
  display: flex;
  align-items: flex-end;     /* align bottoms */
  justify-content: flex-start;
  gap: 12px;

  margin: 0 0 1vh 0;         /* <-- spacing ABOVE the widget lives here */
}

/* IMPORTANT: remove the title margin ONLY inside the group */
.AU_titleGroup .AU_titleText{
  margin: 0;                 /* <-- this is the real reason it wasn't aligning */
  line-height: 1;
}

/* Extra safety: pin button to the bottom edge */
.AU_titleGroup .AU_AddReviewButton{
  align-self: flex-end;
  line-height: 1;
}

.AU_sectionHeader {
  margin-bottom: 1vh; /* SAME gap as eBay */
}



}

@media (max-width: 1400px){
    

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*END OF CSS USED TO REMOVE BROWSER MARGINS!!!!!!!!!!!!!*/

/* =========================
   PAGE BACKGROUND
   ========================= */
body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;

  background-image: url(../../images/DISPLAY3/background_ipad.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   MAIN CONTAINER
   ========================= */
.AU_wrapper {
  width: 90vw;
  height: 90vh;

  background: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);

  position: relative;
  padding: 24px;
  overflow-y: auto;
}

/* =========================
   HEADER (TOP TITLE + HOME)
   ========================= */
.AU_pageTitle {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;       /* bottom-align with button */

  margin: 0; /* no spacing here */           /* gap above first widget */
  
}

/* Title inside header ONLY */
.AU_pageTitle .AU_titleText {
  font-size: 1.4rem;
  font-weight: bold;

  margin: 0;
  padding: 0;

  display: flex;               /* critical for bottom alignment */
  align-items: flex-end;
  line-height: 1;
}

/* =========================
   GENERAL SECTION TITLES
   ========================= */
.AU_titleText {
  font-size: 1.4rem;
  font-weight: bold;

  display: block;
  line-height: 1;

  margin: 0 0 1vh 0;           /* sits just above widgets */
}

/* =========================
   HOME BUTTON
   ========================= */
.AU_HomepageBox {
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;

  padding: 10px 14px;
  border-radius: 2vh;

  background: #373636;
  color: paleturquoise;
  border: 1px solid #cfcfcf;

  white-space: nowrap;
  line-height: 1;              /* prevents vertical drift */
  box-shadow: 0.3vh 0.3vh 0.2vh rgba(0, 0, 0, 0.2);
  position: relative;
  bottom: 1.4vh;   /* was 0.6vw — increase to move UP */
}

.AU_HomepageBox:active {
    transform: translate(0.1vh, 0.1vh);
}

.AU_HomepageBox:hover {
    color: lawngreen;
    box-shadow: 0.3vh 0.3vh 0.2vh rgba(0, 0, 0, 0.4);
}

/* =========================
   CONTENT FLOW
   ========================= */
.AU_reviewsContent {
  display: flex;
  flex-direction: column;
}

/* =========================
   WIDGET CONTAINERS
   ========================= */
.google_reviews,
.ebay_reviews {
  background: #ececec;         /* light grey widget background */
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #d0d0d0;
}

/* =========================
   GOOGLE REVIEW CTA
   ========================= */
.google_review_cta {
  text-align: center;
  margin: 1vh 0 3vh 0;
}

.AU_feedbackLink {
  color: #0056b3;
  text-decoration: none;
  font-weight: bold;
}

.AU_feedbackLink:hover {
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
  .AU_wrapper {
    width: 95vw;
    height: 95vh;
    padding: 16px;
  }

  .AU_pageTitle .AU_titleText,
  .AU_titleText {
    font-size: 1.2rem;
  }
}



/* Add Review button */
.AU_AddReviewButton {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;

  padding: 6px 12px;
  border-radius: 8px;

  background-color: #ececec;     /* widget-panel grey */
  color: #2f2f2f;

  border: 1px solid #cfcfcf;

  line-height: 1;
  white-space: nowrap;
  transition: background-color 120ms ease;
}

.AU_AddReviewButton:hover {
  background-color: #e0e0e0;
}

/* Title + button on one line (eBay section) */
.AU_titleGroup{
  display: flex;
  align-items: flex-end;     /* align bottoms */
  justify-content: flex-start;
  gap: 12px;

  margin: 0 0 1vh 0;         /* <-- spacing ABOVE the widget lives here */
}

/* IMPORTANT: remove the title margin ONLY inside the group */
.AU_titleGroup .AU_titleText{
  margin: 0;                 /* <-- this is the real reason it wasn't aligning */
  line-height: 1;
}

/* Extra safety: pin button to the bottom edge */
.AU_titleGroup .AU_AddReviewButton{
  align-self: flex-end;
  line-height: 1;
}

.AU_sectionHeader {
  margin-bottom: 1vh; /* SAME gap as eBay */
}

}


/* MATEVIEW SETTINGS (min-height: 1000px) */
@media (min-height: 1000px){
    

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*END OF CSS USED TO REMOVE BROWSER MARGINS!!!!!!!!!!!!!*/

/* =========================
   PAGE BACKGROUND
   ========================= */
body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;

  background-image: url(../../images/DISPLAY3/background_ipad.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   MAIN CONTAINER
   ========================= */
.AU_wrapper {
  width: 90vw;
  height: 80vh;

  background: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);

  position: relative;
  padding: 24px;
  overflow-y: auto;
}

/* =========================
   HEADER (TOP TITLE + HOME)
   ========================= */
.AU_pageTitle {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;       /* bottom-align with button */

  margin: 0; /* no spacing here */           /* gap above first widget */
  
}

/* Title inside header ONLY */
.AU_pageTitle .AU_titleText {
  font-size: 1.8rem;
  font-weight: bold;

  margin: 0;
  padding: 0;

  display: flex;               /* critical for bottom alignment */
  align-items: flex-end;
  line-height: 1;
}

/* =========================
   GENERAL SECTION TITLES
   ========================= */
.AU_titleText {
  font-size: 1.8rem;
  font-weight: bold;

  display: block;
  line-height: 1;

  margin: 0 0 1vh 0;           /* sits just above widgets */
}

/* =========================
   HOME BUTTON
   ========================= */
.AU_HomepageBox {
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3rem;

  padding: 10px 24px;
  border-radius: 2vh;

  background: #373636;
  color: paleturquoise;
  border: 1px solid #cfcfcf;

  white-space: nowrap;
  line-height: 1;              /* prevents vertical drift */
  box-shadow: 0.3vh 0.3vh 0.2vh rgba(0, 0, 0, 0.2);
  position: relative;
  bottom:2.2vh;   /* was 0.6vw — increase to move UP */
  margin-top:2vh;
}

.AU_HomepageBox:active {
    transform: translate(0.1vh, 0.1vh);
}

.AU_HomepageBox:hover {
    color: lawngreen;
    box-shadow: 0.3vh 0.3vh 0.2vh rgba(0, 0, 0, 0.4);
}

/* =========================
   CONTENT FLOW
   ========================= */
.AU_reviewsContent {
  display: flex;
  flex-direction: column;
}

/* =========================
   WIDGET CONTAINERS
   ========================= */
.google_reviews,
.ebay_reviews {
  background: #ececec;         /* light grey widget background */
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #d0d0d0;
}

/* =========================
   GOOGLE REVIEW CTA
   ========================= */
.google_review_cta {
  text-align: center;
  margin: 1vh 0 3vh 0;
}

.AU_feedbackLink {
  color: #0056b3;
  text-decoration: none;
  font-weight: bold;
}

.AU_feedbackLink:hover {
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
  .AU_wrapper {
    width: 95vw;
    height: 95vh;
    padding: 16px;
  }

  .AU_pageTitle .AU_titleText,
  .AU_titleText {
    font-size: 1.2rem;
  }
}

/* Title + button on one line (eBay section) */
.AU_titleGroup{
  display: flex;
  align-items: flex-end;     /* align bottoms */
  justify-content: flex-start;
  gap: 12px;

  margin: 0 0 1vh 0;         /* <-- spacing ABOVE the widget lives here */
}

/* IMPORTANT: remove the title margin ONLY inside the group */
.AU_titleGroup .AU_titleText{
  margin: 0;                 /* <-- this is the real reason it wasn't aligning */
  line-height: 1;
}

/* Extra safety: pin button to the bottom edge */
.AU_titleGroup .AU_AddReviewButton{
  align-self: flex-end;
  line-height: 1;
}

.AU_sectionHeader {
  margin-bottom: 1vh; /* SAME gap as eBay */
}



}


