﻿/*
=========================================================================================================
  Module      : InquiryInput (InquiryInput.css)
  ･･･････････････････････････････････････････････････････････････････････････････････････････････････････
  Copyright   : Copyright W2 Co.,Ltd. 2025 All Rights Reserved.
=========================================================================================================
*/

.preview-container {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.preview-item {
  position: relative;
  display: inline-block;
}

.preview-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.close-button {
  position: absolute;
  top: 2px;
  right: 2px;
  background: red;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  cursor: pointer;
  font-size: 14px;
}

.error-message {
  color: red;
  margin-top: 5px;
}
