/*
 Theme Name:   Cargo Largo Tech Web Sale
 Theme URI:    https://cargolargo.com/
 Description:  Theme settings used for the Cargo Tech Web Sale
 Author:       Cargo Largo
 Author URI:   https://cargolargo.com
 Template:     twentytwentyfour
 Version:      1.0.0
 Text Domain:  cargo-largo-tech-web-sale
*/

/* Add your custom styles below */

/* Style for table on My Bids page */
.my-bids-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
}
.my-bids-table th, .my-bids-table td {
  border: 1px solid #ccc;
  padding: 0.5em;
}
.my-bids-table th {
  background: #f4f4f4;
  text-align: left;
}

/* Submit form button color for FluentForms */
.cl-submit-yellow.ff-btn-submit {
  background-color: #fed104 !important;
  color: #262626 !important;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

.cl-submit-yellow.ff-btn-submit:hover {
  background-color: #e6b800;
  color: #000000;
}

/* Sold badge */
/* Make product cards position-relative to contain badge */
/* Style the SOLD badge */
.woocommerce ul.products li.product {
    position: relative;
}

.custom-sold-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #262626;
    color: #fed104;
    padding: 4px 8px;
    font-weight: bold;
    font-size: 12px;
    z-index: 10;
}

