/**
 * Saturdays Search Block - CSS
 * 
 * Styling untuk Search Frame block
 */

/* Container utama */
.wp-block-custom-saturdays-search {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
  background-color: #ffffff;
  color: #333333;
}

/* Judul Block */
.wp-block-custom-saturdays-search .saturdays-search-title {
  margin: 0 0 20px 0;
  font-size: 1.5em;
  font-weight: 600;
  color: #333333;
  text-transform: none;
  letter-spacing: 0.5px;
  text-align: left;
}

/* Search container */
.saturdays-search-container {
  margin-bottom: 30px;
  width: 100%;
  max-width: 500px;
  margin-left: 0;
}

/* Search input */
.saturdays-search-box .saturdays-search-input {
  width: 100%;
}

.saturdays-search-box input[type='search'] {
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
  width: 100%;
}

/* Search results */
.saturdays-search-results {
  margin-top: 20px;
  padding: 10px 0;
}

.search-results-section {
  margin-bottom: 30px;
}

.search-results-section h3 {
  text-align: left;
  margin-bottom: 15px;
  font-size: 1.2em;
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
  text-align: left;
}

/* Frame card in search results */
.search-frame-card {
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-frame-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-frame-image {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 10px;
}

.search-frame-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.search-frame-info {
  text-align: left;
}

.search-frame-name {
  font-size: 1em;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.search-frame-type {
  font-size: 0.8em;
  color: #666;
}

/* Selected frame */
.saturdays-selected-frame {
  margin-top: 30px;
}

.no-frame-selected {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 4px;
  color: #666;
}

.selected-frame-preview h3 {
  margin-bottom: 15px;
  font-size: 1.2em;
  font-weight: 600;
}

.selected-frame-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 500px;
}

.selected-frame-image {
  width: 160px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.selected-frame-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.selected-frame-info {
  text-align: left;
  padding-left: 15px;
}

.selected-frame-name {
  font-size: 1em;
  margin: 0 0 5px 0;
  font-weight: 500;
}

.selected-frame-type {
  font-size: 0.85em;
  color: #666;
}

/* Status messages */
.search-loading,
.search-error,
.search-no-results {
  padding: 15px;
  text-align: left;
  background-color: #f9f9f9;
  border-radius: 4px;
  margin: 10px 0;
}

.search-error {
  color: #d32f2f;
  background-color: #ffebee;
}

.no-image {
  background-color: #f5f5f5;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 0.8em;
}

/* Public view styling */
.selected-frame {
  display: flex;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}

.frame-card {
  max-width: 100%;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.frame-card:hover {
  transform: none;
  box-shadow: none;
}

.frame-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.frame-image {
  width: 160px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.frame-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.frame-info {
  text-align: left;
  padding-left: 15px;
}

.frame-name {
  font-size: 1em;
  margin: 0 0 5px 0;
  font-weight: 500;
  color: #333;
}

.frame-variant {
  font-size: 0.85em;
  color: #666;
  margin-top: 3px;
}

/* Responsive styles */
@media screen and (max-width: 767px) {
  .search-results-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .search-frame-image {
    height: 120px;
  }

  .search-frame-name {
    font-size: 0.9em;
  }

  .wp-block-custom-saturdays-search .saturdays-search-title {
    font-size: 1.3em;
  }

  .frame-image {
    width: 120px;
    height: 80px;
  }

  .frame-name {
    font-size: 0.9em;
  }

  .frame-variant {
    font-size: 0.8em;
  }
}

/* Extra small devices */
@media screen and (max-width: 480px) {
  .frame-card a {
    flex-direction: column;
    align-items: flex-start;
  }

  .frame-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  .frame-info {
    padding-left: 0;
  }
}
