.rbsdj-container {
    border: 1px solid black;
    padding: 25px;    
    position: relative;
}


.rbsdj-request,
.rbsdj-search,
.rbsdj-results {
    background: #eee;
    padding: 15px;
    border: 1px solid black;    
}

.rbsdj-search {
    /*margin: 50px 0px;*/
    margin-bottom: 25px;
    
}
.rbsdj-searching {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
    font-style: italic;    
}

.rbsdj-container label {
    font-weight: bold;
    display: block;
}

.rbsdj-input-text {
    font-weight: normal;
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.rbsdj-text, 
.rbsdj-input-text,
.rbsdj-input-button,
.rbsdj-container label {
    font-size: 18px;
}

.rbsdj-container span {
    font-size: 18px;
}

.rbsdj-header {
    margin-bottom: 15px;
}


.rbsdj-text {
    margin: 15px 0px;
}

.rbsdj-list {
    font-size: 20px;
    margin: 10px 0px;    
}
.rbsdj-list li {
    list-style: decimal-leading-zero;    
    list-style-position: inside;
}

.rbsdj-table {
    width: 100%;
    margin-bottom: 25px;
}
.rbsdj-table_row {
    display: grid; 
    grid-template-columns: auto 200px;          /* mobile: only 'auto' */
}
.rbsdj-table .rbsdj-table_row:nth-child(odd) {
    background: #ffffff;
    border: 1px solid #000000;
}
.rbsdj-table .rbsdj-table_row:nth-child(even) {
    background: #cccccc;
    border: 1px solid #000000;
}
.rbsdj-table .rbsdj-table_row p {
    font-size: 16px;
    padding: 15px;
    word-break: break-word;
    /*word-wrap: anywhere;*/
}
.rbsdj-list-col-request {
    text-align: right;
    width: 200px;
}



/** Better fixed position of request form **/
.rbsdj-request-overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    /*right: 0px;*/
/*    background: rgba(255, 255, 255,0.8);*/
    background: rgba(0, 0, 0, 0.4);
/*    border: 1px solid #000000;*/
    /*padding: 25px;*/
    width: 100%;
    height: 100%;
}

.rbsdj-request-overlay form {
    background: #eeeeee;
    padding: 25px;
    margin: 15px;
    border: 1px solid #000000;
    /*background: rgba(255, 255, 255,0.8);*/
    background: #ffffff;
    position: absolute;
    left: 10px;
    right: 10px;
}


.rbsdj-requested-song p {
    font-size: 16px;
    font-style: italic;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 25px;
}

.rbsdj-request-error {
    color: #700;
    font-weight: bold;
    margin-bottom: 25px;
    font-size: 18px;    
}
.rbsdj-request-error-message {
    font-style: italic;
}

.rbsdj-request-success {
    font-size: 20px;
    margin-top: 25px;
    display: block;
    color: #006;
    font-weight: bold;
    text-align: center;    
}


.rbsdj-input-button[disabled] {
    cursor: not-allowed;
}




@media screen and (max-width: 600px) {
    
    .rbsdj-table_row {
        grid-template-columns: 100%;
    }
    
    .rbsdj-list-col-request {
        text-align: left;
    }
}