.tools-parent-container .os-info-card h1 {
        color: #333;
        margin-bottom: 20px;
        font-size: 2rem;
      }
      .tools-parent-container .os-display {
        padding: 20px;
        border-radius: 10px;
        font-size: 1.5rem;
        font-weight: bold;
        color: #667eea;
        margin-top: 20px;
      }
      .tools-parent-container {
        /* Toast Styles */
      }
      .tools-parent-container .windows-warning-toast {
        position: fixed;
        top: 10%;
        left: 50%;
        /* transform: translate(-50%, -50%) scale(0.9); */
        background: linear-gradient(135deg, #fff3cd 0%, #ffc107 100%);
        color: #856404;
        padding: 30px;
        border-radius: 25px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        z-index: 999999;
        min-width: 400px;
        max-width: 90vw;
        border: 4px solid #ff9800;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      }
      .tools-parent-container .windows-warning-toast.show {
        opacity: 1;
        transform: translate(-50%, 0%) scale(1);
      }
      .tools-parent-container .toast-content {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        position: relative;
      }
      .tools-parent-container .toast-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        flex-shrink: 0;
        background: rgba(255, 152, 0, 0.3);
        border: 3px solid #ff9800;
      }
      .tools-parent-container .toast-message {
        flex: 1;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.8;
        text-align: left;
        padding-right: 40px;
      }
      .tools-parent-container .toast-message strong {
        font-size: 20px;
        font-weight: 800;
        color: #ff5722;
        display: block;
        margin-bottom: 15px;
      }
      .tools-parent-container .toast-close-btn {
        position: absolute;
        top: -10px;
        right: -10px;
        background: #ff5722;
        color: white;
        border: 3px solid white;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        font-size: 24px;
        font-weight: 800;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: all 0.3s;
      }
      .tools-parent-container .toast-close-btn:hover {
        background: #d32f2f;
        transform: rotate(90deg) scale(1.15);
      }
      .tools-parent-container {
        /* Mobile Responsive */
      }
      @media (max-width: 768px) {
        .tools-parent-container .windows-warning-toast {
          /* top: auto;
          bottom: 20px;
          left: 50%;
          transform: translate(-50%, 0) scale(0.9); */
          min-width: auto;
          width: calc(100% - 40px);
          padding: 20px;
        }
        /* .tools-parent-container .windows-warning-toast.show {
          transform: translate(-50%, 0) scale(1);
        } */
        .tools-parent-container .toast-content {
          flex-direction: column;
          text-align: center;
        }
        .tools-parent-container .toast-message {
          padding-right: 0;
        }
        .tools-parent-container .toast-icon {
          margin: 0 auto;
        }
      }