/*
Theme Name: editcompressimage_pro
Theme URI: https://editcompressimage.com
Author: Generated by AI
Description: Professionally styled theme for editcompressimage.com with grid layout and tool integration.
Version: 1.0
License: GPLv2 or later
Text Domain: editcompressimage_pro
*/
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
  color: #333;
}
h1 {
  text-align: center;
  padding: 20px;
  color: #222;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}
.tool-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.tool-card:hover {
  transform: translateY(-5px);
}
.tool-card a {
  text-decoration: none;
  color: #0073aa;
  font-weight: bold;
}
