.wpspeedtestpro-ssl-testing {
    margin-top: 20px;
}

#start-ssl-test {
    margin-bottom: 20px;

}


#ssl-test-results {
    padding: 10px 12px;
    margin-top: 20px;
}

#ssl-status-message {
    margin: 10px 0;
    padding: 10px 12px;
}

/*
.ssl-tabs {
    margin-top: 20px;
}

.ssl-tab-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #ccc;
}

.ssl-tab-links li {
    display: inline-block;
    margin-bottom: -1px;
}

.ssl-tab-links a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #444;
    border: 1px solid transparent;
}

.ssl-tab-links li.active a {
    background-color: #fff;
    border-color: #ccc;
    border-bottom-color: #fff;
}

.ssl-tab-links li.active a:focus {
    outline: none;
}

.ssl-tab-content {
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    padding: 20px;
}

.ssl-tab {
    display: none;
}

.ssl-tab.active {
    display: block;
}
*/
.http-transaction {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
}

.http-info-table {
    width: 100%;
    border-collapse: collapse;
}

.http-info-table th,
.http-info-table td {
    padding: 8px;
    border: 1px solid #e5e5e5;
}

.http-info-table th {
    background-color: #f2f2f2;
    font-weight: bold;
    text-align: left;
}

.ssl-simulations-table {
    width: 100%;
    border-collapse: collapse;
}

.ssl-simulations-table th,
.ssl-simulations-table td {
    padding: 8px;
    border: 1px solid #e5e5e5;
}

.ssl-simulations-table th {
    background-color: #f2f2f2;
    font-weight: bold;
    text-align: left;
}

.ssl-simulations-table tr.error {
    background-color: #fff0f0;
}

.fas {
    margin-right: 5px;
}

.ssl-info-banner {
    position: relative;
    padding: 20px;
    margin: 20px 0;
    background: #fff;
    border-left: 4px solid #2271b1;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}

.ssl-info-banner h2 {
    font-size: 1.3em;
    margin: 0 0 15px 0;
}

.ssl-info-banner h4 {
    color: #1d2327;
    font-size: 1.1em;
}

.ssl-info-banner .notice-dismiss {
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
    color: #787c82;
    background: none;
    border: none;
    cursor: pointer;
}

.ssl-info-banner .notice-dismiss:hover {
    color: #d63638;
}

.ssl-grades strong {
    display: inline-block;
    margin-bottom: 3px;
}

.ssl-grades p {
    margin-left: 20px;
}


.test-progress {
    height: 4px;
    background: #e5e5e5;
    margin-top: 10px;
    border-radius: 2px;
    overflow: hidden;
}


.test-progress::after {
    content: '';
    display: block;
    width: 30%;
    height: 100%;
    background: linear-gradient(
        to right,
        #2271b1,
        #4CAF50,
        #FFC107,
        #E91E63,
        #2271b1
    );
    background-size: 400% 100%;
    animation: 
        progress 1s infinite linear,
        rainbow 4s infinite linear;
}

@keyframes progress {
    from { transform: translateX(-100%); }
    to { transform: translateX(400%); }
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

