body *, not(body #footer-top *){
	color: #000000;
	font-family: var(--e-global-typography-primary-font-family);
}

.teew-section-heading{
  text-align: center;
  margin-bottom: 30px;
  margin-top: 20px;
}
.prop-firms-list {
  /* No specific styles were inline for the container, so this is empty for now. */
}

.prop-firms-list .prop-firm-item {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #eee;
  padding: 0 50px;
  margin-bottom: 15px;
  border-radius: 8px;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}

.prop-firm-card-item{
	transition: all 0.3s ease-in-out;
}
.prop-firms-list .prop-firm-item:hover, .prop-firm-card-item:hover{
	box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.3);
}

.prop-firms-list .logo-section {
  position: relative;
  width: 25%;
  max-width: 220px;
}

.prop-firms-list .order-badge {
  background: #c00;
  color: var(--e-global-color-text);
  padding: 12px 12px 6px;
  border-radius: 4px;
  font-weight: bold;
  position: absolute;
  top: -28px;
  margin-top: -20px;
}

.prop-firms-list .logo {
  margin-left: 48px;
  flex: 0 0 80px;
}

.prop-firms-list .logo img {
  max-width: 100%;
  border-radius: 6px;
}

.prop-firms-list .details .account-size {
  font-size: 14px;
  color: #555;
}

.prop-firms-list .details .account-size.price {
  color: #111;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}

.prop-firms-list .details .discount {
  color: #2e3246;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.prop-firms-list .details .account-type {
  font-size: 14px;
  color: #666;
}

/* Ratings section */
.prop-firms-list .ratings {
    display: flex;
    align-items: center;
    gap: 5px;
}

.prop-firms-list .ratings .star-rating {
    display: inline-block;
    position: relative;
    font-size: 20px;
}

.prop-firms-list .ratings .star-rating .star {
    display: inline-block;
}

.prop-firms-list .ratings .star-rating .star.filled{
  color: #FFC107;
}
.prop-firms-list .ratings .star-rating .star.empty {
    color: #ccc;
}

/* Half star effect */
.prop-firms-list .ratings .star-rating .star.half {
    background: linear-gradient(to right, #FFC107 0%, #FFC107 50%, #C5C5C5 50%, #C5C5C5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #FFC107; /* Fallback for browsers without clip */
}

.prop-firms-list .buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prop-firms-list .buttons a {
  padding: 8px 15px;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
}

.prop-firms-list .buttons a:first-child {
  background: red;
  color: #fff;
}

.prop-firms-list .buttons a:last-child {
  background: black;
  color: #fff;
}

/* Prop firm card style */

/* Container for the grid layout */
.prop-firms-cards-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    /* background-color: #f5f5f5; */
}

/* Individual card item */
.prop-firm-card-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.prop-firm-card-item .card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.prop-firm-card-item .logo {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
}

.prop-firm-card-item .logo img {
    max-width: 100%;
    max-height: 100%;
}

.prop-firm-card-item .card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.prop-firm-card-item .ratings {
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.prop-firm-card-item .star-rating {
    font-size: 18px;
}

.prop-firm-card-item .star.filled {
    color: var(--rating-star-color, #FFC107);
}

.prop-firm-card-item .star.half {
    background: linear-gradient(to right, var(--rating-star-color, #FFC107) 0%, var(--rating-star-color, #FFC107) 50%, var(--rating-star-empty-color, #C5C5C5) 50%, var(--rating-star-empty-color, #C5C5C5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prop-firm-card-item .star.empty {
    color: var(--rating-star-empty-color, #C5C5C5);
}

.prop-firm-card-item .card-body {
    flex-grow: 1;
    margin-bottom: 20px;
}

.prop-firm-card-item .short-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.prop-firm-card-item .card-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prop-firm-card-item .card-buttons a {
    display: block;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.prop-firm-card-item .read-review-button {
    background-color: var(--e-global-color-secondary);
    color: var(--e-global-color-text);
}

.prop-firm-card-item .read-review-button:hover {
    background-color: var(--e-global-color-primary);
}


.prop-firm-card-item .visit-now-button {
    background-color: var(--e-global-color-accent);
    color: var(--e-global-color-text);
}

.prop-firm-card-item .visit-now-button:hover {
    background-color: var(--e-global-color-474d7fc);
    color: var(--e-global-color-text);
}


/* Newsletter */

.teew-newsletter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    gap: 32px;
}

.teew-newsletter-wrapper .newsletter-left-image,
.teew-newsletter-wrapper .newsletter-right-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    max-width: 32%;
    padding-right: 15px;
    padding-left: 15px;
}

.teew-newsletter-wrapper .newsletter-left-image img,
.teew-newsletter-wrapper .newsletter-right-image img {
    max-width: 100%;
    height: auto;
}

.teew-newsletter-wrapper .newsletter-form-container {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}

.teew-newsletter-wrapper .newsletter-title {
    margin-bottom: 5px;
    color: #fff;
}

.teew-newsletter-wrapper .newsletter-subtitle {
    margin-top: 0;
    margin-bottom: 15px;
    color: #fff;
}

.teew-newsletter-wrapper .wpcf7-form-control.wpcf7-submit{
  margin-top: 24px;
  border-color: #fff;
  color: #fff;
}

/* Datatable */

.custom-table-container {
    overflow-x: auto;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

.custom-table thead th {
    background-color: #333;
    color: #fff;
    padding: 12px 15px;
    text-align: left;
    font-weight: bold;
}

.custom-table tbody td {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
}

.custom-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.custom-table tbody tr:hover {
    background-color: #f1f1f1;
}

/* Specific styling for the 'x' character or icons */
.custom-table td .false-indicator {
    color: red;
    font-weight: bold;
    font-size: 1.2em;
}

/* Prop voting table */
.prop-vote-table {
  width: 100%;
  border-collapse: collapse;
}
.prop-vote-table th, .prop-vote-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}
.vote-btn {
  background: var(--e-global-color-accent) !important;
  color: #fff; 
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.vote-btn:hover {
  background: var(--e-global-color-primary) !important;
  color: var(--e-global-color-secondary) !important;
}

/* Login model */
/* Modal base */
.pfv-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}
/* Modal box */
.pfv-modal-content {
  background: var(--e-global-color-text);
  padding: 20px;
  width: 350px;
  border-radius: 10px;
  position: relative;
}
.pfv-close {
  position: absolute;
  top: 10px; right: 15px;
  cursor: pointer;
  font-size: 20px;
}

@media (max-width: 768px) {
  /* Styles for screens up to and including 768px wide */
  .prop-firms-cards-list {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .prop-firms-list{
    padding: 15px 30px;
  }
  .prop-firms-list .prop-firm-item{
  	flex-wrap: nowrap;
    flex-direction: column;
    padding: 15px;
    margin-bottom: 0;
  }
  .prop-firms-list .logo-section{
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction : row;
    gap: 30px;
    align-items: center;
    justify-content: center;
  }
  
  .prop-firms-list .logo {
    margin-left: 0;
    width: 100%;
  }
  .prop-firms-list .order-badge{
    top : -38px;
    margin : auto 0;
    right: 0;
  }
  .prop-firms-list .details{
    width: 100%;
    text-align: center;
    padding: 0;
  }
  
  .prop-firms-list .buttons{
    flex-direction: row;
  }
}