/* Theme override for Personal mode: replace blue shades with green (#39B54A) */

h1, h2, h3, h4, td > a {
    color: #39B54A !important;
    border-color: #39B54A !important;
}

.ConfigScreens th {
    background-color: #39B54A !important;
}

.ui-btn-up-b {
    border: 1px solid #39b54a; /* dark green border */
    background: #309A3F; /* main green background */
    font-weight: bold;
    color: #fff; /* text stays white */
    text-shadow: 0 1px 1px #287F34; /* medium-dark green shadow */

    background-image: -webkit-gradient( linear, left top, left bottom, from(#42D055), /* lighter green start */
    to(#309A3F) /* medium green end */
    );
    background-image: -webkit-linear-gradient(#42D055, #309A3F);
    background-image: -moz-linear-gradient(#42D055, #309A3F);
    background-image: -ms-linear-gradient(#42D055, #309A3F);
    background-image: -o-linear-gradient(#42D055, #309A3F);
    background-image: linear-gradient(#42D055, #309A3F);
}