    .ss-no-data__wrapper {
      text-align: center;
      padding: 30px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      width: 100%;
      max-width: 100%;
        box-sizing: border-box;
    }

    .ss-no-data__icon {
      width: 100px;
      margin-bottom: 20px;
      opacity: 0.85;
    }

    .ss-no-data__title {
      font-size: 45px;
      font-weight: 600;
      margin-bottom: 30px;
    }

    .ss-no-data__text {
      font-size: 25px;
      color: #666;
      margin-bottom: 20px;
    }

    .ss-no-data__button {
      background-color: #007bff;
      color: white;
      border: none;
      padding: 10px 24px;
      border-radius: 6px;
      font-size: 1em;
      cursor: pointer;
    }

    .ss-no-data__button:hover {
      background-color: #0056b3;
    }

    .ss-no-data__loader {
      border: 6px solid #e0e0e0;
      border-top: 6px solid #007bff;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      animation: ss-spin 1s linear infinite;
      margin: 0 auto 20px;
    }

    @keyframes ss-spin {
      to { transform: rotate(360deg); }
    }

    .ss-hidden {
      display: none;
    }

    .secuseek-no-findings-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 50px 20px;
        background-color: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        margin-top: 20px;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    }

    .secuseek-no-findings-image {
        margin-bottom: 24px;
    }

    .secuseek-no-findings-message h2 {
        font-size: 22px;
        font-weight: 600;
        color: #1f2937;
        margin: 0 0 10px 0;
    }

    .secuseek-no-findings-message p {
        font-size: 15px;
        color: #6b7280;
        max-width: 550px;
        line-height: 1.6;
        margin: 0;
    }

    /* Start Scan Button Styles */
    .secuseek-start-scan-section {
        margin-top: 24px;
        padding-top: 20px;
        border-top: 1px solid #e5e7eb;
    }

    .secuseek-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        border: none;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.2s ease;
        background: none;
    }

    .secuseek-btn-primary {
        background-color: #22ad5a;
        color: white;
    }

    .secuseek-btn-primary:hover {
        background-color: #1a8a47;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(34, 173, 90, 0.3);
    }

    .secuseek-btn-primary:disabled {
        background-color: #9ca3af;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    .secuseek-scan-info {
        margin-top: 12px;
        color: #6b7280;
        font-size: 13px;
        line-height: 1.4;
    }

    .secuseek-scan-info small {
        color: #9ca3af;
    }