* {
    box-sizing: border-box;
}
		.rental-application-form {
    width: 80%;
    /* max-width: 600px; */
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
     box-shadow: 0 15px 10px -3px rgba(0, 0, 0, 0.1);
     margin: 0 auto;
}
.property-image {
    text-align: center;
}

.rental-application-form .form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap; 
 justify-content: space-between;
}

.rental-application-form .form-group {
    width:  49%; /* Two inputs per row, 48% width each with gap */
}

.rental-application-form .form-group.full-width {
    flex: 1 1 100%; /* Full width for single items like checkbox or button */
}

.rental-application-form label {
    margin-bottom: 14px;
    font-weight: 500;
    display: block;
    font-size: 16px;
}


input[type="text"], input[type="email"], input[type="tel"], input[type="password"],input[type="date"] ,textarea {

    width: 100%;
    padding: 10px;
/*    margin: 5px 0 25px 0;*/
  border: 1px solid #ccc;
    border-radius: 5px;
        height: 45px;
          box-shadow: 0 15px 10px -3px rgba(0, 0, 0, 0.05);
}
.form-group.full-width.center-align {
    text-align: center;
}

.rental-application-form button {
    padding: 10px 30px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
      box-shadow: 0 15px 10px -3px rgba(0, 0, 0, 0.1);
     width: 15%;
      font-size: 20px;
      font-weight: 500;
}

.rental-application-form button:disabled {
    background-color: #000;
    cursor: not-allowed;
    opacity: .7;
}


/* Styling for the rental application table */
.rental-application-container {
    margin: 20px auto;
    width: 80%;
    max-width: 1200px;
}

.rental-application-list {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.rental-application-list th,
.rental-application-list td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.rental-application-list th {
    background-color: #f5f5f5;
    color: #333;
    font-weight: bold;
}

.rental-application-list tr:nth-child(even) {
    background-color: #f9f9f9;
}

.view-details-link {
    text-decoration: none;
    color: #0073aa;
    font-weight: bold;
}

.view-details-link:hover {
    text-decoration: underline;
    color: #005177;
}

/* Optional: Hover effect on rows */
.rental-application-list tr:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}
.property-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
        margin-bottom: 30px;
}

.property-image img {
    width: 100%;
    height: auto;
    display: block;
}

.property-details {
    padding: 20px;
    text-align: center;
}

.property-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.property-description {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.property-price {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}
@media(max-width:768px){
	.rental-application-form {
    width: 95%;
}
.rental-application-form .form-group {
    width: 100%;
}
}

.rental-application-list {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.rental-application-list th,
.rental-application-list td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.rental-application-list th {
    background-color: #f5f5f5;
    color: #333;
    font-weight: bold;
}

.rental-application-list tr:nth-child(even) {
    background-color: #f9f9f9;
}

.view-details-link {
    text-decoration: none;
    color: #0073aa;
    font-weight: bold;
}

.view-details-link:hover {
    text-decoration: underline;
    color: #005177;
}

/* Optional: Hover effect on rows */
.rental-application-list tr:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}
.property-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.property-image img {
    width: 100%;
    height: auto;
    display: block;
}

.property-details {
    padding: 20px;
    text-align: center;
}

.property-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.property-description {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.property-price {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

.rental-application-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.rental-application-filters .filter-item {
    flex: 1 1 200px;  /* Flex grow, shrink, and basis for responsive layout */
    display: flex;
   
}

.rental-application-filters label {
    margin-bottom: 5px;
    font-weight: bold;
}

.rental-application-filters input,
.rental-application-filters select,
.rental-application-filters button {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.rental-application-filters button {
    background-color: #0073e6;
    color: white;
    cursor: pointer;
}

.rental-application-filters button:hover {
    background-color: #005bb5;
}
/* Container for the application details */
.rental-application-details-container {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 30px auto;
}

/* Title of the page */
.application-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

/* Individual application info rows */
.application-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
    margin-bottom: 20px;
}

/* Label styles */
.info-row .label {
    font-weight: bold;
    color: #555;
}

/* Value styles */
.info-row .value {
    color: #333;
}

/* Button for navigation */
.button {
    display: inline-block;
    background-color: #0073e6;
    color: #fff;
    padding: 12px 25px;
    text-align: center;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    margin-top: 20px;
}

.button:hover {
    background-color: #005bb5;
}
.custom-thank-you-page {
    width: 52%;
    margin: 0 auto;
    background: white;
    box-shadow: 0 15px 10px -3px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 8px;
}
.custom-thank-you-page h2 {
    text-align: center;
}
p.success-message {
    color: red;
    font-size: 17px;
}
p.error-message {
    color: red;
}
a.view-application-button {
    display: block;
    background: black;
    width: 35%;
    text-align: center;
    color: white;
    text-decoration: none;
    margin: 20px 0;
    padding: 15px 20px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    box-shadow: 0 15px 10px -3px rgba(0, 0, 0, 0.1);
}
.status-approved {
    color: green;
    font-weight: bold;
}

.status-denied {
    color: red;
    font-weight: bold;
}

    .rental-application-filters {
        margin-bottom: 20px;
    }
    .filter-item {
        margin-right: 15px;
        display: inline-block;
    }
    .filter-item label {
        margin-right: 5px;
    }
    .filter-item input, .filter-item select {
        padding: 5px;
        font-size: 14px;
        width: 200px;
    }

    .filter-item button {
        padding: 6px 12px;
        font-size: 14px;
        background-color: #0073aa;
        color: white;
        border: none;
        cursor: pointer;
    }

    .filter-item button:hover {
        background-color: #005a8a;
    }

    .button-container {
        margin-bottom: 20px;
    }

    .button-primary {
        padding: 10px 20px;
        font-size: 14px;
        background-color: #0073aa;
        color: white;
        border: none;
        cursor: pointer;
        text-decoration: none;
    }

    .button-primary:hover {
        background-color: #005a8a;
    }

    .button-container .button-primary {
        margin-right: 20px;
    }

    .wp-list-table th, .wp-list-table td {
        padding: 12px;
        text-align: left;
        border: 1px solid #ddd;
    }

    .wp-list-table th {
        background-color: #f9f9f9;
        font-weight: bold;
    }

    .wp-list-table td a {
        color: #0073aa;
        text-decoration: none;
    }

    .wp-list-table td a:hover {
        text-decoration: underline;
    }

    .button-primary {
        padding: 10px 20px;
        font-size: 14px;
        background-color: #0073aa;
        color: white;
        border: none;
        cursor: pointer;
        text-decoration: none;
    }

