﻿.reportBase .rbLinkButton .rbText.rbSecondary {
    padding-right: 0;
}

/*
    The label and field overlap each other, so force the field to the far right for readability.    
*/
.reportOverview .formfield .field {
    float: right;
}

/*
    Slight tweak to make sure the button is centered.
*/
.clientSpecific div.reportBase div.menuButton {
    top: 2px;
}

/*
    All of the cells have large padding. For the filter row that impacts (by a decent %) how much space we've got. So reduce it from 13px to 5px.
*/
.tableReport .RadGrid .rgFilterRow > td {
    padding-left: 5px;
    padding-right: 5px;
}

/* 
    For a normal date column the default picker is way too long - 100px for the box and then the button next to it. Set the width - needs to be important as Telerik puts the default inline. 
*/
.tableReport .RadGrid .rgFilterRow > td .RadPicker {
    width: 65px !important;
}

    /* 
        To ensure the date (dd/MM/yy) we need to slightly adjust the padding.
    */
    .tableReport .RadGrid .rgFilterRow > td .RadPicker .riTextBox {
        padding-left: 7px;
        padding-right: 7px;
    }

/* Make sure the value field (typically address) doesn't go on forever. */
.googlemap .geoInfoWindow .infoValue {
    max-width: 150px;
}