body {
    background-color: #f5f5f5;
}

#table-container
{
    width: 100%;
    height: 100%;
    overflow: scroll;
    margin: 0 auto;
    padding: 0;
    border: 0;
}

table {
    border-collapse: collapse;
    border: 0px;
    border-spacing: 0;
    min-height: 500px;    
    max-width: 100%;
    overflow: visible;
}

tr {
    background-color: #E8E8E8;
    overflow: visible;
    
}

tr:nth-child(2n) {
    background-color: #EEE;
}

th, td {    
    padding: 0px;
    border: 0px;
    min-width: 150px;
    width: 150px;
    max-width: 150px;
    height: 30px;
    max-height: 50px;
    overflow: visible;    
}

td:first-child {
    padding: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
}

th {
    background-color: #DDD;
    border-bottom: 1px solid #000;    
}

tr:nth-child(2n) {
    background-color: rgba(0, 0, 0, 0.045);
}

tr:nth-child(2n + 1) {
    background-color: rgba(0, 0, 0, 0.07);
}

.cell-container {    
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible;
}

.cell-content {
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    padding: 12px;
    overflow: hidden;
    text-overflow: ellipsis;    
    position: absolute;
    z-index: 5;
}
.cell-content:hover {
    background-color: rgba(219, 180, 155, 0.541);
    cursor: pointer;
}

.cell-tooltip {
    visibility: hidden;
    position: absolute;
    top: 0;
    right: 0;
}

.cell-container:hover .cell-tooltip {
    visibility: visible;
}

.cell-overlay {
    position: absolute;    
    top: 0;
    left: -75px;
    width: 300px;
    height: 200px;
    z-index: 999;    
    background-color: #fff;    
}

#cell-editor {  
    padding: 0;
    border: 0;
    margin: 0;     
    width: 100%;
    height: calc(100% - 50px);         
    background-color: #fff;
}

.cell-overlay button {
    width: 50%;
    height: 50px;
    border: 0;
    cursor: pointer;
}

.cell-overlay button:hover {
    background-color: #ddd;
}

.cell-overlay button:active {
    background-color: #ccc;
}

.key-cell {
    min-width: 200px;
    width: 200px;
    max-width: 200px;
}

.locale-checkbox {
    padding: 5px 0 5px 0;
}

.locale-checkbox a {
    margin-left: 10px;
    cursor: pointer;
}

.locale {
    padding: 5px;
}