.mono {
	font-size: 13px;;
	/*font-family: monospace;*/
}
div.ResourcePanel.vintage,div.ResourcePanelSmall.vintage,div.ResourcePanelLarge.vintage {
	background-color: #e1dcd1;
}

div.ResourcePanel.numbered,div.ResourcePanelSmall.numbered,div.ResourcePanelLarge.numbered {
	background-color: #ceddec;
}

div.ResourcePanel,div.ResourcePanelSmall,div.ResourcePanelLarge {
	background-color: white;
}

div.ResourcePanel.sold,div.ResourcePanelSmall.sold,div.ResourcePanelLarge.sold {
	background-color: #cee9e7;
}
.ResourcePanel {
padding:0px;
}
.ResourcePanelInfo {
padding-bottom:0px;
}
#question_copyfrom { 
display:none;
}

#question_imagecorrection { 
display:block;
}
.checkselect {
top: 5px;
display: inline-block;
position: relative;
}

.ResourcePanelIcons {
margin-top: -30px;
}
.ResourceTypeField73 {
float:right;
margin-right:-6px;
}
.IconCopy, .KeyCopy	{background: url(../gfx/IcCopy.gif) no-repeat;}

/* Color fields for greater clarity when editing */

#field_73,#field_94,#field_105,#field_8,#field_3,#field_18,#field_75,#field_124,#field_125 {
	background-color: #fefddc;
}

#field_11,#field_96,#field_97,#field_109,#field_76,#field_77,#field_83,#field_54 {
	background-color: #dbf2fe;
}

#field_99,#field_84,#field_108,#field_88,#field_72,#field_78,#field_79,#field_80,#field_81,#field_82 {
	background-color: #fedcb8;
}

#field_87,#field_86,#field_85,#question_39a form input {
	background-color: #fec5f6;
}

div.ResourcePanel,div.ResourcePanelSmall,div.ResourcePanelLarge {
	border-radius:0; /*border:1px solid silver;*/
}

#field_123:disabled {
	border: none; color: black; background: #eee; resize: none;
}

/* .ResourcePanelInfo:nth-of-type(3){
	float: right;
}

.ResourcePanelInfo:nth-of-type(1){
	float: left;
	position: relative;
	top: 20px;
}

div.ResourcePanel {
	border-radius: 0;
}

 div.ResourcePanel table.ResourceAlign  {
 	height: 170px;
 }

div.ResourcePanel table.ResourceAlign tbody tr td {
	margin-top: 5px !important;
	margin-bottom: 0 !important;
	padding-bottom: 0;
	padding-top: 0;
} */


/* ===== 10.7 layout compatibility for the copymaster thumb renderer (added 2026-05-25) =====
   The copymaster renderresultthumb renderer emits 9.4-era markup; under 10.7's core CSS the
   tiles broke in three ways. Fixes below:
   1. 10.7 light.css gives .ImageWrapper a grey bg and render_resource_image wraps previews in a
      white .ImageColourWrapper -> both hid the panel colour. Make the image area transparent and
      clamp it to a 150px box so the vintage/numbered/sold colour fills the whole card.
   2. The renderer sets the panel to height:auto; combined with variable image/icon heights the
      cards came out ragged. Force a fixed height for every thumbs-view card.
   3. The tool icons used a -30px margin tuned to 9.4 line-heights and drifted under 10.7. Pin the
      icon row absolutely to the bottom-right so it is identical on every card; put the checkbox
      back on the left (10.7 core floats it right). */

/* 1. transparent, fixed-height image area */
.ResourcePanel .ImageWrapper {
    background-color: transparent !important;
    height: 150px;
    overflow: hidden;
    padding-bottom: 0;
}
.ResourcePanel .ImageColourWrapper {
    background-color: transparent !important;
    max-height: 150px !important;
    max-width: 100% !important;
}
.ResourcePanel .ImageColourWrapper img {
    max-height: 150px !important;
    max-width: 100% !important;
}

/* 2. uniform card height (beats the renderer's inline height:auto via !important) */
.ResourcePanel:not(.ResourcePanelLarge) {
    height: 212px !important;
    overflow: hidden;
}

/* 3. bottom row: checkbox left, ID (field 73) right, status (field 94) left, icons pinned bottom-right */
.ResourcePanel .checkselect {
    float: left !important;
    position: static !important;
    top: auto !important;
    margin: 0 4px 0 5px !important;
}
.ResourcePanel .ResourceTypeField73 {
    float: right;
    margin-right: 5px;
}
.ResourcePanel .ResourcePanelIcons {
    position: absolute;
    bottom: 3px;
    right: 4px;
    left: auto;
    margin: 0 !important;
    padding: 0;
    text-align: right;
}

/* 4. view-mode button bar: the view plugins hard-code width:200px on this container, which now
   wraps the 5th custom view (LL) to a second line. Let it shrink-to-fit on one line instead. */
div.InpageNavLeftBlock.icondisplay {
    width: auto !important;
    white-space: nowrap;
}

/* Search bar magnifier: anchor it to the top-right of the search form so it sits inside the field's
   right edge (float/inline positioning was unreliable). 2026-05-25 */
#simple_search_form { position: relative; }
#simple_search_form .search-icon {
    position: absolute !important;
    top: 0;
    right: 15px;
    float: none !important;
    margin: 0 !important;
    width: 34px;
    height: 28px;
    min-height: 28px;
    line-height: 26px;
    padding: 0 !important;
    box-sizing: border-box;
    border-radius: 0 4px 4px 0;
    text-align: center;
}
