#shopify-theme-detector {
    font-family: 'Arial', sans-serif;
    margin: 0;
    margin-left: 0;
    justify-content: center;
    align-items: center;
}

#shopify-theme-detector .container {
    text-align: center;
}

#shopify-theme-detector h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 25px;
    color: #47603a;
    font-weight: bold;
    width: 100%;
}

#shopify-theme-detector span {
    margin-bottom: 5px;
    color: #7AB55C;
    font-size: 64px;
    line-height: 76px;
    font-weight: bold;
}

#shopify-theme-detector h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #326b1b;
    font-weight: normal;
}

#shopify-theme-detector form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#shopify-theme-detector input[type="url"] {
    flex: 1;
    font-size: 16px;
    border: none;
    outline: none;
    box-sizing: border-box;
}

#shopify-theme-detector input[type="submit"] {
    font-size: 16px;
    border: none;
    background-color: #7AB55C;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#shopify-theme-detector input[type="submit"]:hover {
    background-color: #7AB55C;
}

#loading-spinner {
    display: none;
    margin: 20px auto;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #7AB55C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#shopify-theme-detector-result {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
    text-align: center;
}

#shopify-theme-detector-result h2,
#shopify-theme-detector-result p {
    display: inline-block;
    margin: 0;
    vertical-align: baseline;
}

#shopify-theme-detector-result h2 {
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
}

#shopify-theme-detector-result p {
    font-size: 18px;
}

@media (max-width: 768px) {
    #shopify-theme-detector input[type="submit"] {
        font-size: 16px;
    }
    #shopify-theme-detector span {
        font-size: 44px;
        line-height: 51px;
        font-weight: bold;
    }
}