/* Apply to all input fields and lists */
input, select, textarea {
    background-color: white;
    border: none;
	border: 5px solid transparent; /* Set border color */
    border-radius: 8px;
    padding: 10px;
    margin: 5px 0;
    font-size: 16px;
    color: #222;

/* transform: rotate(-90deg);
  transform-origin: center center;
  white-space: nowrap; */
}

/* Apply to placeholders in input fields and lists */
::placeholder {
    color: #555;
}

input:focus, select:focus, textarea:focus {
    border-color: rgb(253, 203, 79)!important; /* Set focus border color */
	outline: none !important;
}

/* Responsive styling */
@media screen and (max-width: 600px) {
    /* Adjust styles for smaller screens if needed */
    input, select, textarea {
        /* Adjust styles for smaller screens */
    }
}

/* Add more styles as needed */
