/* Fix: angular-bootstrap's "popover" directive attribute conflicts with the native
   HTML Popover API (Chrome 114+), which treats [popover] elements as popovers
   (hidden by default, position:fixed, etc.). Reset all Popover API styles. */
a[popover], span[popover] {
    display: inline !important;
    position: static !important;
    inset: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    border: none !important;
    padding: 0 !important;
    overflow: visible !important;
    background-color: transparent !important;
}
button[popover] {
    display: inline-block !important;
    position: static !important;
    inset: auto !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    background-color: transparent !important;
}

@font-face {
    font-family: Pontano;
    src: url('/Client/assets/fonts/PontanoSans-Regular.ttf');
}

body {
    padding-top: 50px;
    padding-bottom: 20px;
    font-family: 'Pontano', sans-serif;
    /*font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;*/
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    /*max-width: 280px;*/
}

.tw-table-row {
}

.tw-table-row > div {
    padding: 5px;        
}

.tw-table-header, .tw-table-header a {
    font-weight: bold;
    color: #333;
    text-decoration: none;
    margin-bottom: 5px;
}

.tw-table-header {
    border-bottom: 2px solid #DDD;
}

.tw-table-row-even {
    background-color: #F5F5F5;
}

.tw-table-row-even-overdue {
    background-color: #FFF0F0;
}

.tw-table-row-odd {
}

.tw-task-name > a {
    border-bottom: 0px;
}

.tw-table-row a {
    color: #333;
}

.tw-contact-modal, .tw-customer-modal, .tw-authentication-modal, .tw-importance-modal, .tw-energylevel-modal, .tw-task-modal, .tw-activity-modal, .tw-project-modal, .tw-team-modal, .tw-tag-modal, .tw-tracker-modal {
    position: fixed;
    top: 10%;
    left: 18.5%;
    z-index: 1050;
    width: 80%;
    height: 80%;
    margin-left: 15%;
}

.linkstatus-ok {
}

.linkstatus-first {
    border-top: 1px solid #CCF;
}

.linkstatus-last {
    border-bottom: 1px solid #CCF;
}

.linkstatus-prev-notlinked {
    border-top: 1px solid #FFFF00;
}

.linkstatus-next-notlinked {
}

.linkstatus-prev-overlap {
    border-top: 1px solid #FF0000;
}

table.activity-indicators {
    float: right;
    border-collapse: collapse;
}

table.activity-indicators td, table.activity-indicators th {
    text-align: center;
    color: #CCC;
    font-size: 0.8em;
    height: 20px;
}

table.activity-indicators th {
    border-bottom: 1px solid #CCC;
}

.big-home-icon {
    font-size: 7em;
    text-shadow: 2px 2px 5px rgba(150, 150, 150, 1);
}

.small-home-icon {
    font-size: 3em;
    text-shadow: 2px 2px 5px rgba(150, 150, 150, 1);
}

.home-menu {
	margin-top: 60px;
}

.team-members {
    width: 240px!important;
}

.module-icon {
    font-size: 5em;
    text-shadow: 2px 2px 5px rgba(150, 150, 150, 1);
}

.tw-entity-details {
    padding-left: 40px;
}

.tw-entity-collapse {
    font-size: 0.8em;
    border: 1px solid #EEE;
    background-color: #FFF;
    -webkit-box-shadow: 0px 3px 20px -5px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 3px 20px -5px rgba(0,0,0,0.5);
    box-shadow: 0px 3px 20px -5px rgba(0,0,0,0.5);
}

.tw-entity-collapse input, .tw-entity-create input, .tw-entity-collapse select, .tw-entity-create select {
    max-width: 100%;
    margin-bottom: 5px;
    font-size: 12px;
}

.tw-entity-collapse .input-group, .tw-entity-create .input-group {
    width: 100%;
}

.tw-entity-col {
    padding-left: 15px!important;
}

.tw-entity-col a {
    color: #333;
}

.tw-ticker-row {
    padding-top: 32px;
    padding-bottom: 23px;
}

.tw-error-messages {
    padding-bottom: 10px;
}

/* plan table */
table.table-plan {
    border: 1px solid #CCC;
}
table.table-plan td, table.table-plan th {
    text-align: center;
    font-size: 0.9em;
    border-top: 0px!important;
}

table.table-plan td:nth-child(3), table.table-plan th:nth-child(3) {
    background-color: #F0FFF0;
    font-size: 0.9em;
}
    
table.table-plan th:nth-child(1) {
    text-align: left!important;
}

table.table-plan td:nth-child(2), table.table-plan th:nth-child(2) {
    background-color: #F5F5F5;
}

table.table-plan td:nth-child(4), table.table-plan th:nth-child(4) {
    background-color: #F5F5F5;
}

/* lg */
@media (min-width: 1200px) {
}

/* lg */
@media (min-width: 970px) {
}

/* sm */
@media (min-width: 768px) {
}

/* xs */
@media only screen and (max-width: 768px) {
    .tw-ticker-row {
        padding-top: 0px;
        padding-bottom: 5px;
    }
    .big-home-icon {
        font-size: 5em;
    }
    .small-home-icon {
        font-size: 2em;
    }
	.home-menu {
		margin-top: 20px;
	}
    
    .team-members {
        width: 150px!important;
    }
}  

