.crane-list-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: Arial, sans-serif;
}

.crane-list-table th, 
.crane-list-table td {
    border: 1px solid #ddd;
    padding: 10px;
}

.crane-list-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.crane-list-table td img {
    max-width: 100px;
    height: auto;
    /* border-radius: 5px; */
}

.crane-list-table a {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
}

.crane-list-table a:hover {
    text-decoration: underline;
}
/* filepath: /c:/xampp/htdocs/srv dc/wp-content/plugins/plugin-crane/assets/css/styles.css */
.crane-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.cranes-list li {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 10px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1 0 30%; /* Adjust to ensure three cranes per row */
    box-sizing: border-box;
}

.cranes-list img {
    max-width: 100%;
    height: auto;
}

.cranes-list h3 {
    font-size: 1.5em;
    margin: 10px 0;
}

.cranes-list p {
    margin: 5px 0;
}

.crane-widget {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  width: 100%;
  justify-content: space-between;
  /* background-color: #0073aa; */
}
.crane-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.crane-text{
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-around;
}
.crane-card {
  background: #fff;
  /* border-radius: 16px; */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: calc(25% - 20px);
  box-sizing: border-box;
  border-bottom: #333333 solid 2px;
}

.crane-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.crane-image {
  position: relative;
  width: 100%;
  height: 280px; 
  overflow: hidden;
  background-color: #f0f0f0;
}

.crane-card-image {
  /* position: absolute;  
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;  
  object-position: center;
  display: block; 
  border: 2px solid blue; */
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.crane-card:hover .crane-card-image {
  transform: scale(1.1); 
}

.crane-content {
  padding: 16px;
  text-align: center;
}

.crane-brand,.crane-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333333;
  margin-bottom: 8px;
}

 .crane-machine-type {
  font-size: 1rem;
  color: #777777;
  margin: 0;
}

.crane-brand {
  margin-bottom: 4px;
}

/* Design Responsive */
@media (max-width: 768px) {
  .crane-widget {
      padding: 10px;
  }

  .crane-card {
      width: calc(50% - 10px); 
  }

  .crane-content {
      padding: 12px;
  }

  .crane-title {
      font-size: 1.1rem;
  }

  .crane-brand, .crane-machine-type {
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .crane-card {
      width: 100%; 
  }
}



















