﻿.base-raw-message-component {
    display: flex;
    flex-direction: column;
    color: white;
    width: 100%;
    overflow-x: auto;
    height: 100%;    
}

/********************************************q************/

.raw-message-title-section {
    display: flex;
    justify-content: space-between;    
    background-color: #1A1A1A;
    align-content: center;    
    margin: 5px;
}

.raw-message-title-section-ar {
    flex-direction: row-reverse;
}

.raw-message-title-item {
    align-self: center;
}

.close {
    width: 30px;
    height: 30px;
}

/********************************************************/


.search-control-section {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    background-color: #333333;
    margin: 5px;
}

.search-control-item {
    height: 40px;
    margin: 5px;
    align-self: center;
}

.search-input {
    flex-grow: 1;
    width: 100%
}

.end {
    align-self: flex-end;
}

.narrow {
    width: 40px;
    height: 40px;
}

.result-information {
    flex-basis: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.empty-space {
    width: 100px;
}

.button-for-copy {
    background-color: #333333;
    color: #CCCCCC;
    border: 1px solid #666666;
    border-radius: 4px;
    width: 100px;
}

.button-for-export {
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #666666;
    border-radius: 4px;
    width: 100px;
}

/*  https://stackoverflow.com/questions/917610/put-icon-inside-input-element-in-a-form */
.iconSearch {
    padding-left: 50px;
    background: url("https://static.thenounproject.com/png/101791-200.png") no-repeat left;
    background-size: 20px;
}

.iconSearch-rtl {
    padding-right: 50px;
    background: url("https://static.thenounproject.com/png/101791-200.png") no-repeat right;
    background-size: 20px;
}

/********************************************************/


.raw-message-content-section {
    display: flex;
    flex-direction: column;    
    overflow-y: auto;    
    height: 80vh;    
    overflow-x: auto;       
    direction: ltr;
}


.row-message {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: start;    
    margin-right: 5px;
    margin-bottom: 1px;
    flex-wrap: nowrap;
    height: 30px;    
    vertical-align: middle
}


.rowNumberField {
    color: #999999;    
    width: 50px;
    min-width: 50px;
    padding-left: 10px;
    height: 100%;
    user-select: none;
}

.contentField {
    border-bottom: 1px solid gray;
    color: #FFFFFF;
    align-self: flex-start;   
    width:100%;    
}

.matchesResult {
    
}