.search-container {
    width: 60%;
    margin: 0 auto;
    margin-top: 32px;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    border: 2px solid var(--pink);
    border-radius: 15px;
}

.search-input {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    padding: 0;
    font-size: 16px;
    flex: 1;
}

.btn-content {
    gap: 5px;
    display: flex;
}

.btn-content[hidden],
.btn-loading[hidden] {
    display: none !important;
}

.sample-report {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.grid-container {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 0.1fr 1.5fr 0.1fr 1fr;
    grid-template-rows: repeat(4, auto);
    align-items: center;
    color: grey;
    font-size: 14px;
    margin: 0 auto;
}

.bullet-point {
    padding-left: 17px;
    margin-bottom: 0px;
    line-height: 20px;
}

.grid-container hr {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    border: 1.5px solid var(--pink);
    border-bottom: none;
}

.small-card {
    background: transparent;
    padding: 10px;
    border-radius: 15px;
    border: 1.5px dashed var(--pink);
    margin: 18px auto;
    position: relative;
    width: 70%;
    max-width: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    width: fit-content;
}

.device {
    width: 100%;
    border-radius: 15px;
    background: var(--bg);
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
    grid-column: 3;
    grid-row: 1 / -1;
}

.device header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    background: #dde3e9;
}

.device .dots {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background: #cdd6e4;
}

.device .title {
    margin-left: auto;
    color: grey;
}

.device .viewport {
    padding: 8px;
    display: grid;
    gap: 5px;
}

.status-message {
    text-align: center;
    visibility: hidden;
    min-height: 1.5em;
    line-height: 1.5em;
}

.status-message.visible {
    visibility: visible;
}

.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid currentColor;
    border-right-color: transparent;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.stats-text {
    font-size: 42px;
    font-family: 'DS-Digital', sans-serif;
}

.small-grey-text {
    margin-top: 30px;
    font-size: 12px;
    color: gray;
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}