/*               */
/*  version 1.4  */
/*               */

.showtimelauncher-form-section-rowhack {
  padding-top: 20px ;
}

.validate-button-just-okay
{
	font-size: larger ;
	background: #FFA500 ;
}

.validate-button-perfect-okay
{
	font-size: larger ;
	background: #90ee90 ;
    animation: validate-button-perfect-okay-bg-color-animation 1s infinite ;
}
@keyframes validate-button-perfect-okay-bg-color-animation
{
  from { background-color: #90ee90 ; }
  50%  { background-color: #70ae70 ; }
  to   { background-color: #90ee90 ; }
}


.time-remaining-text {
	font-size: 2em
}
.win-dialog-heading {
	font-size: 7em;
	color: blue;
}
.win-dialog-body {
	font-size: 3.5em;
}
.win-dialog-panel {
	background-color: green ;
}
.showtimelauncher-app-root-element {
	background-color: white ;
}
.instructions-gwt-dialog-heading {
	font-size: 3em;
	height: 1.1em;
}
.gwt-provided-dialog-panel {
	background-color: #f9f9f9 ;
}











/* Styles for IFRAME content */
.mobile-instructions-css * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mobile-instructions-css {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mobile-instructions-css::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.mobile-instructions-css .container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.mobile-instructions-css .content-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.8s ease-out;
    margin-bottom: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.mobile-instructions-css h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.mobile-instructions-css ul {
    list-style: none;
    padding: 0;
}

.mobile-instructions-css li {
    margin-bottom: 18px;
    padding: 15px 20px 15px 55px;
    position: relative;
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
    background: #f8f9ff;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    animation: slideInLeft 0.5s ease-out backwards;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-instructions-css li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.mobile-instructions-css li:nth-child(1) { animation-delay: 0.1s; }
.mobile-instructions-css li:nth-child(2) { animation-delay: 0.2s; }
.mobile-instructions-css li:nth-child(3) { animation-delay: 0.3s; }
.mobile-instructions-css li:nth-child(4) { animation-delay: 0.4s; }
.mobile-instructions-css li:nth-child(5) { animation-delay: 0.5s; }
.mobile-instructions-css li:nth-child(6) { animation-delay: 0.6s; }
.mobile-instructions-css li:nth-child(7) { animation-delay: 0.7s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-instructions-css li::before {
    content: '\1F3AE';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    line-height: 1;
}

.mobile-instructions-css li:nth-child(5)::before { content: '\1F3C6'; }
.mobile-instructions-css li:nth-child(6)::before { content: '\2764\FE0F'; }
.mobile-instructions-css li:nth-child(7)::before { content: '\26A0\FE0F'; }

.mobile-instructions-css .team-tip {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    padding: 20px;
    border-radius: 15px;
    margin-top: 25px;
    text-align: center;
    font-size: 1.1em;
    color: #2d3436;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(253, 203, 110, 0.3);
}

.mobile-instructions-css .team-tip::before {
    content: '\1F4A1 ';
    font-size: 1.3em;
}

@media (max-width: 600px) {
    .mobile-instructions-css .content-box {
        padding: 25px;
    }

    .mobile-instructions-css h2 {
        font-size: 1.8em;
    }

    .mobile-instructions-css li {
        font-size: 1em;
        padding: 12px 15px 12px 50px;
    }
}

/* Styles for OUTER page elements (header and buttons) */
.mobile-instructions-outer-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}


.mobile-instructions-outer-container::before {
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.mobile-instructions-outer-header {
    font-size: 3em;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    background: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin: 0;
    animation: slideDown 0.6s ease-out;
    position: relative;
    z-index: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-instructions-outer-actions {
    text-align: center;
    padding: 20px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.mobile-instructions-outer-actions-label {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

.mobile-instructions-outer-button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mobile-instructions-outer-button {
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-instructions-outer-back-btn {
    background: #ffffff;
    color: #667eea;
    border: 2px solid #ffffff;
}

.mobile-instructions-outer-back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    background: #f8f9ff;
}

.mobile-instructions-outer-forward-btn {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.mobile-instructions-outer-forward-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(56, 239, 125, 0.4);
}

.mobile-instructions-outer-button:active {
    transform: translateY(1px);
}

@media (max-width: 600px) {
    .mobile-instructions-outer-header {
        font-size: 2em;
        padding: 15px;
    }

    .mobile-instructions-outer-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}