/* Basic input styling */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea {
    width: 100%;
    padding: 9px 16px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    color: black;
    background: transparent;
}

input{
   
}

/* Focus effect */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}

/* Placeholder styling */
input::placeholder,
textarea::placeholder {
    color: #aaa;
    /* font-style: italic; */
    font-size: 16px;
}

.tiny-placeholder::placeholder {
    font-size: 9px;
}

/* Disabled styling */
input:disabled,
textarea:disabled {
    background-color: #eee;
    color: #888;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Basic input styling */




/* Basic select styling */
select {
    width: 100%;
    /* padding: 12px 16px; */
    padding: 9px 16px;

    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-size: 12px;
    color: #333;
    appearance: none;
    /* Remove default arrow for custom styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='%234a90e2' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

/* Focus effect for select */
select:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}

/* Option styling */
option {
    color: #333;
    background-color: #fff;
    padding: 12px;
}

/* Disabled select styling */
select:disabled {
    background-color: #eee;
    color: #888;
    cursor: not-allowed;
    opacity: 0.7;
}


.custom-input {
    width: 100%;
    padding: 9px 16px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

/* Error styling */
.custom-input.input-error {
    border-color: red;
    /* Red border for empty inputs */
}

/* Focus effect */
.custom-input:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}

/* Disabled styling */
.custom-input:disabled {
    background-color: #eee;
    color: #888;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Placeholder styling */
.custom-input::placeholder {
    color: #aaa;
}




.corner-box {
    position: relative;
    width: 200px;
    /* Adjust as needed */
    height: 200px;
    /* Adjust as needed */
    margin: 20px;
    border: none;
}

.corner {
    width: 10px;
    /* Adjust corner size as needed */
    height: 10px;
    background-color: black;
    /* Color of the corner */
    position: absolute;
}

/* Position each corner */
.top-left {
    top: 0;
    left: 0;
}

.top-right {
    top: 0;
    right: 0;
}

.bottom-left {
    bottom: 0;
    left: 0;
}

.bottom-right {
    bottom: 0;
    right: 0;
}




.custom-select-wrapper {
    position: relative;
    display: inline-block;
}

.custom-select {
    appearance: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 7px;
    border: 1px solid #ccc;
    background: transparent;
    width: 100%;
}

.custom-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: red;
    /* Change arrow color here */
}


.truncated {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.read-more-btn:hover {
    text-decoration: underline;
}



/* Stripped table style */
.custom-table-stripe {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

.custom-table-stripe th,
.custom-table-stripe td {
    padding: 10px;
    text-align: left;
    /* border: 1px solid #ddd; */
    position: relative;
}

.other_table {
    width: 100%;
}

.custom-table-stripe th {
    background-color: white;
    color: #333;
    font-weight: bold;
}

/* Striped rows */
.custom-table-stripe tr:nth-child(odd) {
    background-color: rgb(244, 244, 244);
}

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

/* Hover effect for rows */
.custom-table-stripe tr:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}





.quill-dark .ql-toolbar {
  background: rgb(255, 255, 255); 
}


/* Toolbar icons */
.quill-dark .ql-stroke {
  stroke: black;
}


.quill-dark .ql-picker {
  color: black;
}
