/**
 * Meilisearch Search Frontend Styles
 */

/* Container */
.meilisearch-search-container {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Search Form */
.msp-search-form {
    margin-bottom: 24px;
}

.msp-search-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.msp-search-input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.msp-search-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.msp-clear-button {
    padding: 12px 18px;
    border: none;
    border-radius: 12px;
    background: #2563eb;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.msp-clear-button:hover {
    background: #1d4ed8;
}

/* Filters */
.msp-filters {
    margin-top: 15px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
}

.msp-filter-group {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.msp-filter-group label {
    font-weight: 600;
    color: #374151;
}

.msp-filter-group select {
    padding: 6px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: white;
    cursor: pointer;
}

/* Meta Information */
.msp-search-meta {
    margin-bottom: 14px;
    color: #6b7280;
    font-size: 14px;
}

/* Results Container */
.msp-search-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* Result Item */
.msp-result-item {
    display: block;
    padding: 20px 24px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    background: white;
}

.msp-result-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    border-color: #d1d5db;
}

.msp-result-tag {
    background: #f9fafb;
    border-color: #e5e7eb;
}

.msp-result-tag:hover {
    background: #f3f4f6;
}

/* Result Content */
.msp-result-content {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.msp-result-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.msp-result-text {
    flex: 1;
}

/* Type Labels */
.msp-type-label {
    display: inline-block;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.msp-type-tag {
    color: #2563eb;
    background: #dbeafe;
}

.msp-type-speaker {
    color: #059669;
    background: #d1fae5;
}

.msp-type-page {
    color: #7c3aed;
    background: #ede9fe;
}

.msp-type-post {
    color: #dc2626;
    background: #fee2e2;
}

/* Result Title */
.msp-result-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 6px;
    color: #111827;
}

/* Result Excerpt */
.msp-result-excerpt {
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
}

.msp-result-excerpt p {
    margin: 0.5em 0;
}

.msp-result-excerpt p:first-child {
    margin-top: 0;
}

.msp-result-excerpt p:last-child {
    margin-bottom: 0;
}

/* Highlighted Text */
.msp-result-excerpt mark,
.msp-result-title mark {
    background-color: #fef3c7;
    color: inherit;
    font-weight: 600;
    padding: 0 2px;
}

/* Loading State */
.msp-search-loading {
    text-align: center;
    padding: 40px;
    color: #6b7280;
}

/* No Results */
.msp-no-results {
    padding: 40px;
    border: 2px dashed #e5e7eb;
    border-radius: 16px;
    color: #6b7280;
    text-align: center;
}

/* Error State */
.msp-error {
    padding: 20px;
    border: 1px solid #fca5a5;
    background: #fef2f2;
    border-radius: 10px;
    color: #b91c1c;
}

/* Theme: Minimal */
.theme-minimal .msp-search-input {
    border-radius: 4px;
    border-color: #e5e7eb;
}

.theme-minimal .msp-clear-button {
    border-radius: 4px;
    background: #6b7280;
}

.theme-minimal .msp-result-item {
    border-radius: 4px;
    padding: 16px;
}

.theme-minimal .msp-result-image {
    border-radius: 4px;
}

/* Theme: Dark */
.theme-dark {
    background: #1f2937;
    color: #f3f4f6;
    padding: 20px;
    border-radius: 12px;
}

.theme-dark .msp-search-input {
    background: #111827;
    border-color: #374151;
    color: #f3f4f6;
}

.theme-dark .msp-search-input:focus {
    border-color: #3b82f6;
}

.theme-dark .msp-clear-button {
    background: #3b82f6;
}

.theme-dark .msp-result-item {
    background: #111827;
    border-color: #374151;
    color: #f3f4f6;
}

.theme-dark .msp-result-item:hover {
    background: #1f2937;
    border-color: #4b5563;
}

.theme-dark .msp-result-title {
    color: #f9fafb;
}

.theme-dark .msp-result-excerpt {
    color: #d1d5db;
}

.theme-dark .msp-no-results {
    border-color: #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .msp-search-input {
        font-size: 14px;
        padding: 12px 14px;
    }

    .msp-clear-button {
        padding: 10px 14px;
        font-size: 14px;
    }

    .msp-result-item {
        padding: 16px;
    }

    .msp-result-content {
        gap: 12px;
    }

    .msp-result-image {
        width: 70px;
        height: 70px;
    }

    .msp-result-title {
        font-size: 16px;
    }

    .msp-result-excerpt {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .msp-search-input-wrapper {
        flex-direction: column;
        gap: 8px;
    }

    .msp-clear-button {
        width: 100%;
    }

    .msp-result-image {
        display: none;
    }
}


/* ============================================
   NAVBAR SEARCH - [meilisearch_navbar]
   CSS copied from Ajax Search Pro [wd_asp id=3]
   ============================================ */

/* Reset - exactly as ASP does it */
.msp_w_container,
.msp_w_container *,
.msp_w.msp_m,
.msp_w.msp_m *,
.msp_r,
.msp_r * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    text-transform: none;
    text-shadow: none;
    box-shadow: none;
    text-decoration: none;
    text-align: left;
    letter-spacing: normal;
}

.msp_w_container {
    width: 100%;
    position: relative;
}

/* Main container - matches #ajaxsearchpro3_1 */
.msp_w.msp_m {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    max-height: none;
    border-radius: 5px;
    background: #fff;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
    border: 0 none rgb(141,213,239);
    border-radius: 5px;
}

.msp_w.msp_m.msp_non_compact {
    min-width: 200px;
}

/* Probox - the flex container */
.msp_w.msp_m .probox {
    width: auto;
    margin: 0;
    height: 50px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: none;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    direction: ltr;
    align-items: stretch;
    isolation: isolate;
    overflow: hidden;
}

/* Input area */
.msp_w.msp_m .probox .proinput {
    width: 1px;
    height: 100%;
    float: left;
    box-shadow: none;
    position: relative;
    flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    z-index: 0;
    font-weight: normal;
    font-family: "Open Sans", sans-serif;
    color: rgba(136,137,137,1);
    font-size: 15px;
    line-height: 20px;
    text-shadow: none;
    flex-grow: 1;
    order: 5;
    margin: 0 0 0 10px;
    padding: 0 5px;
}

.msp_w.msp_m .probox .proinput form {
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.msp_w.msp_m .probox .proinput input.orig {
    font-weight: normal;
    font-family: "Open Sans", sans-serif;
    color: rgba(136,137,137,1);
    font-size: 15px;
    line-height: 20px;
    text-shadow: none;
    border: 0;
    box-shadow: none;
    height: 50px;
    position: relative;
    z-index: 2;
    padding: 0 !important;
    padding-top: 2px !important;
    margin: -1px 0 0 -4px !important;
    width: 100%;
    background: transparent !important;
    min-width: 120px;
    min-height: unset;
    max-height: unset;
    outline: none;
}

.msp_w.msp_m .probox .proinput input.orig::placeholder {
    color: rgba(136,137,137,1);
}

.msp_speaker_searchbar .probox .proinput input.orig {
    background: #fff !important;
    border-radius: 5px;
}

.msp_topic_searchbar .probox .proinput input.orig {
    background: #fff !important;
    border-radius: 5px;
}


.msp_w.msp_m .probox .proinput input:focus {
    outline: none;
}

/* Magnifier button */
.msp_w.msp_m .probox .promagnifier {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    -webkit-flex: 0 0 50px;
    flex-grow: 0;
    order: 11;
    -webkit-order: 11;
    text-align: center;
    background-image: linear-gradient(180deg, rgba(152,23,27,1), rgba(152,23,27,1));
    background-position: center center;
    background-repeat: no-repeat;
    float: right;
    border: 0 solid rgb(0,0,0);
    border-radius: 0;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.61);
    cursor: pointer;
    background-size: 100% 100%;
    min-width: unset;
    min-height: unset;
}

.msp_w.msp_m .probox .promagnifier:hover {
    background-image: linear-gradient(180deg, rgba(122,19,22,1), rgba(122,19,22,1));
}

.msp_w.msp_m .probox .promagnifier .innericon {
    background-size: 20px 20px;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 100%;
    height: 100%;
    line-height: initial;
    text-align: center;
    overflow: hidden;
    display: block;
    width: 50px;
    height: 50px;
    float: right;
}

.msp_w.msp_m .probox .promagnifier .innericon svg {
    height: 100%;
    width: 22px;
    vertical-align: baseline;
    display: inline-block;
    fill: rgb(255,255,255);
}

/* Loading indicator */
.msp_w.msp_m .probox .proloading {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    flex: 0 0 50px;
    flex-grow: 0;
    order: 8;
    text-align: center;
    background: none;
    background-size: 20px 20px;
    float: right;
    box-shadow: none;
    margin: 0;
    padding: 0;
    z-index: 1;
    background-position: center center;
    display: none;
    background-size: auto;
    background-repeat: no-repeat;
    background-color: transparent;
    padding: 2px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.msp_w.msp_m .probox .proloading .msp_loader {
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 28px;
    max-width: 100%;
    max-height: 100%;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    max-width: 46px;
    max-height: 46px;
}

.msp_w.msp_m .probox .proloading .msp_loader-inner {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    height: 100%;
}

.msp_w.msp_m .probox .proloading .msp_ball-pulse > div {
    background-color: rgba(152,23,27,1);
    width: 20%;
    height: 20%;
    border-radius: 100%;
    margin: 0;
    margin-top: 40%;
    margin-left: 10%;
    float: left;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: block;
    vertical-align: text-top;
}

.msp_w.msp_m .probox .proloading .msp_ball-pulse > div:nth-child(1) {
    -webkit-animation: msp-scale 0.75s -0.24s infinite cubic-bezier(.2,.68,.18,1.08);
    animation: msp-scale 0.75s -0.24s infinite cubic-bezier(.2,.68,.18,1.08);
}

.msp_w.msp_m .probox .proloading .msp_ball-pulse > div:nth-child(2) {
    -webkit-animation: msp-scale 0.75s -0.12s infinite cubic-bezier(.2,.68,.18,1.08);
    animation: msp-scale 0.75s -0.12s infinite cubic-bezier(.2,.68,.18,1.08);
}

.msp_w.msp_m .probox .proloading .msp_ball-pulse > div:nth-child(3) {
    -webkit-animation: msp-scale 0.75s 0s infinite cubic-bezier(.2,.68,.18,1.08);
    animation: msp-scale 0.75s 0s infinite cubic-bezier(.2,.68,.18,1.08);
}

@keyframes msp-scale {
    0% { transform: scale(1); opacity: 1; }
    45% { transform: scale(0.1); opacity: 0.7; }
    80% { transform: scale(1); opacity: 1; }
}

/* Close button */
.msp_w.msp_m .probox .proclose {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    flex-grow: 0;
    order: 9;
    text-align: center;
    min-width: unset;
    min-height: unset;
    background: none;
    background-size: 20px 20px;
    float: right;
    box-shadow: none;
    margin: 0;
    padding: 0;
    z-index: 1;
    background-position: center center;
    display: none;
    background-size: auto;
    background-repeat: no-repeat;
    background-color: transparent;
    position: relative;
    cursor: pointer;
    z-index: 2;
}

.msp_w.msp_m .probox .proclose svg {
    background: rgba(152,23,27,1);
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    left: 50%;
    fill: rgb(254,254,254);
    box-sizing: border-box;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.9);
    border-radius: 50%;
    margin-left: -10px;
    margin-top: -10px;
    padding: 4px;
}

/* Results dropdown */
.msp_r {
    display: none;
}

.msp_r.msp_r_navbar.vertical {
    position: absolute;
    z-index: 11000;
    width: auto;
    margin: 12px 0 0 0;
    left: 0;
    right: 0;
    padding: 4px;
    background: rgba(152,23,27,1);
    border-radius: 3px;
    border: 0 none rgba(0,0,0,1);
    box-shadow: none;
}

.msp_r .results {
    overflow: hidden;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.5) rgb(255,255,255);
}

.msp_r .results::-webkit-scrollbar {
    width: 10px;
}

.msp_r .results::-webkit-scrollbar-track {
    background: rgb(255,255,255);
    box-shadow: inset 0 0 12px 12px transparent;
    border: none;
}

.msp_r .results::-webkit-scrollbar-thumb {
    background: transparent;
    box-shadow: inset 0 0 12px 12px rgba(0,0,0,0.3);
    border: solid 2px transparent;
    border-radius: 12px;
}

.msp_r .results .resdrg {
    height: auto;
}

/* Result items */
.msp_r .results .item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #fff;
    margin-bottom: 2px;
    text-decoration: none !important;
    color: inherit;
    border-radius: 0;
    transition: background 0.15s;
}

.msp_r .results .item:last-child {
    margin-bottom: 0;
}

.msp_r .results .item:hover {
    background: #f5f5f5;
}

.msp_r .results .item .asp_res_image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.msp_r .results .item .asp_res_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.msp_r .results .item .asp_content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.msp_r .results .item .asp_res_type {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #98171b;
    letter-spacing: 0.5px;
    font-family: "Open Sans", sans-serif;
}

.msp_r .results .item.item-tag .asp_res_type {
    color: #2563eb;
}

.msp_r .results .item .asp_res_title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-family: "Open Sans", sans-serif;
}

.msp_r .msp_nores {
    padding: 20px 15px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
}


/* ============================================
   SPEAKER SEARCH - [meilisearch_speaker_search]
   ============================================ */

.msp-speaker-search {
    font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
}

.msp-speaker-search-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.msp-speaker-search-input-wrap {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: stretch;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 28px -13px #000;
}

.msp-speaker-search-input {
    flex: 1;
    border: none;
    padding: 10px 18px;
    font-size: 12px;
    outline: none;
    background: transparent;
}

.msp-speaker-search-input::placeholder {
    color: #888;
}

.msp-speaker-search-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: linear-gradient(180deg, #e43d3d, #e43d3d);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 8px;
}

.msp-speaker-search-btn:hover {
    background: linear-gradient(180deg, #c73333, #c73333);
}

.msp-speaker-search-filter-wrap {
    flex: 1;
    min-width: 250px;
}

.msp-speaker-search-filter-wrap .msp-topic-select {
    width: 100%;
    min-height: 35px;
    border: none;
    border-radius: 50px;
    padding: 8px 15px;
    font-size: 14px;
    background: white;
    box-shadow: 0 4px 28px -13px #000;
    cursor: pointer;
}

.msp-speaker-search-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.msp-speaker-search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.msp-speaker-result-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s;
}

.msp-speaker-result-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.msp-speaker-result-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.msp-speaker-result-content {
    flex: 1;
    min-width: 0;
}

.msp-speaker-result-title {
    font-weight: 700;
    font-size: 16px;
    color: #111;
    margin-bottom: 5px;
}

.msp-speaker-result-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.msp-speaker-no-results,
.msp-speaker-error {
    padding: 30px;
    text-align: center;
    color: #666;
    background: #f9f9f9;
    border-radius: 10px;
}

.msp-speaker-search-loading {
    padding: 20px;
    text-align: center;
    color: #666;
}


/* ============================================
   TOPIC FILTER DROPDOWN - [meilisearch_topic_filter]
   ============================================ */

.msp-topic-filter-container {
    font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
}

.msp-topic-filter-wrapper {
    max-width: 500px;
}

.msp-topic-filter-select {
    width: 100%;
    min-height: 35px;
    border: none;
    border-radius: 50px;
    padding: 8px 15px;
    font-size: 14px;
    background: white;
    box-shadow: 0 4px 28px -13px #000;
    cursor: pointer;
    outline: none;
}

.msp-topic-filter-select:focus {
    box-shadow: 0 4px 28px -10px rgba(0, 0, 0, 0.3);
}

.msp-topic-filter-select[multiple] {
    min-height: 40px;
    padding: 5px 10px;
    border-radius: 15px;
}

.msp-topic-filter-results {
    margin-top: 25px;
}

.msp-topic-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.msp-topic-filter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.msp-topic-filter-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.msp-topic-filter-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

.msp-topic-filter-item-placeholder {
    width: 80px;
    height: 80px;
    background: #e5e7eb;
    border-radius: 50%;
    margin-bottom: 10px;
}

.msp-topic-filter-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.msp-topic-filter-empty,
.msp-topic-filter-error {
    padding: 30px;
    text-align: center;
    color: #666;
    background: #f9f9f9;
    border-radius: 10px;
}

.msp-topic-filter-loading {
    padding: 20px;
    text-align: center;
    color: #666;
}


/* ============================================
   RESPONSIVE - VARIANT SHORTCODES
   ============================================ */

@media (max-width: 768px) {
    .msp_w.msp_m .probox {
        height: 44px;
    }

    .msp_w.msp_m .probox .proinput input.orig {
        height: 44px;
        font-size: 14px;
    }

    .msp_w.msp_m .probox .promagnifier,
    .msp_w.msp_m .probox .proloading,
    .msp_w.msp_m .probox .proclose {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
    }

    .msp_w.msp_m .probox .promagnifier .innericon {
        width: 44px;
        height: 44px;
    }

    .msp-speaker-search-row {
        flex-direction: column;
    }

    .msp-speaker-search-input-wrap,
    .msp-speaker-search-filter-wrap {
        min-width: 100%;
    }

    .msp-speaker-search-results {
        grid-template-columns: 1fr;
    }

    .msp-topic-filter-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .msp-topic-filter-item-img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .msp_r.msp_r_navbar.vertical {
        position: fixed;
        left: 10px;
        right: 10px;
        top: auto;
        margin-top: 8px;
    }

    .msp_r .results {
        max-height: 60vh;
    }

    .msp-speaker-result-img {
        width: 50px;
        height: 50px;
    }
}
