﻿/* month full */

.month_green_main {
    --color-header-background: #636363;

    --color-event-background: #47A477;
    --color-event-bar-background: transparent;
    --color-event-bar: #367c5a;
    --color-event-border: #41946d;

    --color-cell-background-business: #ffffff;
    --color-cell-background-nonbusiness: #f9f9f9;
}


.month_green_main
{
	border: 1px solid #aaa;
    font-size: 13px;
}

.month_green_cell
{
	background-color: white;
}

.month_green_cell_inner
{
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
}

.month_green_cell_header
{
	text-align: right;
	padding-right: 2px;
}

.month_green_header_inner
{
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	cursor: default;

	color: #ffffff;
    background: var(--color-header-background);

    display: flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;
    overflow: hidden;

}

.month_green_message
{
	padding: 10px;
	opacity: 0.9;
	filter: alpha(opacity=90);

	color: #ffffff;
	background: #000;
}


.month_green_event_inner
{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 2px;
	right: 2px;
	overflow:hidden;
	padding: 2px;
	padding-left: 5px;

    font-size: 13px;
    color: #ffffff;
    background-color: var(--color-event-background);
    border-radius: 5px;
    border: 1px solid var(--color-event-border);
    display: flex;
    align-items: center;
}

.month_green_shadow_inner
{
	background-color: #666666;
	opacity: 0.5;
	filter: alpha(opacity=50);
	height: 100%;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}


.month_green_event_delete {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjExR/NCNwAAAI5JREFUKFNtkLERgCAMRbmzdK8s4gAUlhYOYEHJEJYOYOEwDmGBPxC4kOPfvePy84MGR0RJ2N1A8H3N6DATwSQ57m2ql8NBG+AEM7D+UW+wjdfUPgerYNgB5gOLRHqhcasg84C2QxPMtrUhSqQIhg7ypy9VM2EUZPI/4rQ7rGxqo9sadTegw+UdjeDLAKUfhbaQUVPIfJYAAAAASUVORK5CYII=) center center no-repeat;
    opacity: 0.6;
    -ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=60)';
    cursor: pointer;
}

.month_green_event_delete:hover {
    opacity: 1;
    -ms-filter: none;
}

.month_green_event_timeleft { color: #ccc; font-size: 8pt; }
.month_green_event_timeright { color: #ccc; font-size: 8pt; text-align: right; }
