/* Super Simple Trade Tracker basic styles */
.sstt-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap:12px;
}
.sstt-field label{display:block;margin-bottom:6px;}
.sstt-totals li{margin:6px 0;}
.sstt-table{width:100%;border-collapse:collapse;font-size:14px;}
.sstt-table th,.sstt-table td{border:1px solid #e3e3e3;padding:8px;text-align:left;}
.sstt-table thead{background:#f7f7f7;}
.sstt-table .pl-pos{color:#0a7a0a;font-weight:700;}
.sstt-table .pl-neg{color:#c00;font-weight:700;}
