/* DHR 20250612: Update width from 1000px to 670px to keep table consistent with rest of printer version's width (Issue #0028) */
table.experience-summary {
	width: 670px;
	border: 1px solid black;
	border-collapse: collapse;
}

table.experience-summary td {
	border: 1px solid black;
	padding: 7px;
}

/*
table.experience-summary td {
	border: 1px solid black;
	padding: 7px;
}
*/

/* The ribbons */

.corner-ribbon{
    width: 200px;
    background: #e43;
    position: absolute;
    top: 25px;
    left: -50px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 1px;
    color: #f0f0f0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

/* Custom styles */

.corner-ribbon.sticky{
    position: fixed;
}

.corner-ribbon.shadow{
    box-shadow: 0 0 3px rgba(0,0,0,.3);
}

/* Different positions */

.corner-ribbon.top-left{
    top: 25px;
    left: -50px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.corner-ribbon.top-right{
    top: 25px;
    right: -50px;
    left: auto;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.corner-ribbon.bottom-left{
    top: auto;
    bottom: 25px;
    left: -50px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.corner-ribbon.bottom-right{
    top: auto;
    right: -50px;
    bottom: 25px;
    left: auto;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

/* Colors */

.corner-ribbon.white{background: #f0f0f0; color: #555;}
.corner-ribbon.black{background: #333;}
.corner-ribbon.grey{background: #999;}
.corner-ribbon.blue{background: #39d;}
.corner-ribbon.green{background: #2c7;}
.corner-ribbon.turquoise{background: #1b9;}
.corner-ribbon.purple{background: #95b;}
.corner-ribbon.red{background: #e43;}
.corner-ribbon.orange{background: #e82;}
.corner-ribbon.yellow{background: #ec0;}

/* Post-It Notes */
.PostItNote {
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
    color: #000;
    background: #ffc;
    display: block;
    width: 325px;
    padding: 1em;
    margin: 1em;
    margin-bottom: 3em;
    float: left;
    box-shadow: 5px 5px 7px rgba(33,33,33,.7);
}
.PostItNoteParent {
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
    color: #000;
    background: #e6e6fa;
    display: block;
    width: 325px;
    padding: 1em;
    margin: 1em;
    margin-bottom: 3em;
    float: left;
    box-shadow: 5px 5px 7px rgba(33,33,33,.7);
}

/* GTW 06/17/2024: Per myIRB example, fix invisible button issue (Issues00001625) */
.Button.navigation {
        -webkit-transform: translateZ(0);
}


/* GTW 01/30/2025: Color blindess changes for compare feature (Issue #0015) */
.DiffResult-Replace-Dest {
    background-color: #6FF !important;
}

.DiffResult-Insert {
    background-color: #6FF !important;
}

/* DHR 20250703: Increase help icon size on IACUC Submissions, follow-on submissions, Procedures, and Substances (Issue #0032) */
span.ContextHelpIcon {
    font-size: 22.5px !important;
}

.SFQuestions ol li ol li span.ContextHelpIcon {
    font-size: 22.5px !important;
}

/* GTW 20260720: Hotfix to increase pie chart component width so that it displays more names */
.PieChartComponent {
    max-width: 600px !important;
}