﻿/* ============================================================
   Solstice Controls — Youthful theme replacements
   ============================================================ */

/* --- Round Panel --- */
.sol-roundpanel {
    background-color: #E5EECF;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    font-family: Tahoma, Verdana, Arial;
    font-size: 9pt;
    color: #000;
}

.sol-roundpanel-header {
    background-color: #D3E4A6;
    background-image: url('/App_Themes/Youthful/Web/rpHeaderSeparator.gif');
    background-repeat: repeat-x;
    background-position: left bottom;
    padding: 0 0 13px 0;
    position: relative;
    border-radius: 8px 8px 0 0;
}

.sol-roundpanel-header-edge-left,
.sol-roundpanel-header-edge-right {
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 100%;
    background-image: url('/App_Themes/Youthful/Web/rpHeaderLeftEdge.gif');
    background-position: left bottom;
    background-repeat: no-repeat;
}

.sol-roundpanel-header-edge-left {
    left: 0;
}

.sol-roundpanel-header-edge-right {
    right: 0;
}

.sol-roundpanel-header-text {
    font-weight: bold;
    padding: 6px 10px 0 10px;
    color: #000;
}

.sol-roundpanel-content {
    padding: 4px 6px 6px 6px;
}

/* --- TextBox --- */
.sol-textbox {
    width: 100%;
    box-sizing: border-box;
    padding: 2px 4px;
    border: 1px solid #AFC185;
    border-radius: 3px;
    font-family: Tahoma, Verdana, Arial;
    font-size: 9pt;
    color: #000;
    background-color: #fff;
}

    .sol-textbox:focus {
        border-color: #669933;
        outline: none;
    }

/* --- Button --- */
.sol-button {
    padding: 3px 12px;
    border: 1px solid #AFC185;
    border-radius: 3px;
    background-color: #E5EECF;
    font-family: Tahoma, Verdana, Arial;
    font-size: 9pt;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

    .sol-button:hover {
        background-color: #fff;
    }
