/* New Layout Pattern for MyAAC */

.TableContainerBlue {
    background-color: #f1e0c6;
    border: 2px solid #b7904b;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    overflow: hidden;
}

.CaptionContainerBlue {
    background: linear-gradient(180deg, #184175 0%, #153965 100%);
    border-bottom: 2px solid #b7904b;
    padding: 10px 15px;
    color: #e5cd9e;
    font-weight: bold;
    font-size: 14px;
    text-shadow: 1px 1px 2px #000;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    border-top: 1px solid #1c528f;
    border-left: 1px solid #1c528f;
    border-right: 1px solid #1c528f;
}

.CaptionContainerBlue i {
    margin-right: 10px;
    font-size: 16px;
    color: #e5cd9e;
}

.TableContentContainerBlue {
    padding: 0;
}

.TableContentBlue {
    width: 100%;
    border-collapse: collapse;
}

.TableContentBlue td {
    padding: 8px 10px;
    border: 1px solid #cbb88d;
}

.TableContentBlue tr:nth-child(even) td {
    background-color: #e7d1b3;
}

.TableContentBlue tr:nth-child(odd) td {
    background-color: #f1e0c6;
}

/* For labels like Name, Level, etc. */
.TableContentBlue .LabelV175 {
    width: 25%;
    color: #4a4a4a;
}

.CustomSearchInput {
    width: 100%;
    padding: 10px;
    border: 1px solid #a38d6d;
    border-radius: 4px;
    background-color: #f9f5ed;
    color: #333;
    font-size: 14px;
}

.CustomSearchButton {
    background: linear-gradient(180deg, #226bb8 0%, #174b85 100%);
    color: #fff;
    border: 1px solid #0f335b;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.CustomSearchButton:hover {
    background: linear-gradient(180deg, #287acb 0%, #1a5697 100%);
}
