/* poll/notice strat */

.chat-users-container {
    border-radius: 20px;
    background: #272727;
    padding: 20px;
  }
  .chat-users-container hr {
    margin: 0.5rem 0;
  }
  .chat-users-container .chat-user-search input {
    height: 50px !important;
    width: 100%;
  }
  
  .chat-users-container .chat-list {
    width: 100%;
    overflow-y: auto;
    height: 70vh;
  }
  
  .chat-users-container .chat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
  }
  
  .chat-users-container .chat-item:hover {
    background: #f265220d;
  }
  .chat-users-container .active {
    background: #f265220d;
  }
  
  .chat-users-container .chat-item img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 10px;
  }
  
  .chat-users-container .chat-info {
    display: flex;
    align-items: start;
    flex-direction: column;
  }
  
  .chat-users-container.chat-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000000 !important;
    margin: 0;
  }
  
  .chat-users-container .chat-info p {
    font-size: 14px;
    color: #f26522;
    margin: 0;
  }
  
  .chat-users-container .typing {
    color: #00c853;
    font-style: italic;
  }
  
  .chat-users-container .chat-item .time {
    font-size: 12px;
    color: #adafbb;
  }
  
  .chat-list::-webkit-scrollbar {
    display: none;
  }
  
  .chat-container {
    width: 100%;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 20px;
  }
  
  .chat-container .header-inner,
  .chat-container .header {
    display: flex;
    align-items: center;
    padding: 10px 0 0px;
    background-color: transparent;
  }
  
  .chat-container .profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #03eb6924;
    margin-right: 10px;
    border: none;
    overflow: hidden;
  }
  .chat-container .profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .chat-container .status {
    display: flex;
    flex-direction: column;
  }
  
  .chat-container .status .online {
    font-size: 16px;
    color: #f26522;
    font-weight: 400;
  }
  
  .messages {
    flex-grow: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    height: 56vh;
  }
  
  .poll-container {
    width: 444px;
    height: 484px;
    border: 2px solid #f265220f;
    border-radius: 25.64px;
    background: #2d2927;
    padding: 30px;
    position: relative;
  }
  .poll-container .polygon {
    position: absolute;
    top: 26px;
    left: -11px;
    width: 20px;
    height: 20px;
    border-top: 2px solid #f265220f;
    border-left: 2px solid #f265220f;
    transform: rotate(-47deg);
    background: #2d2927;
  }
  .poll-container .poll-title {
    font-size: 20px;
    color: #f26522;
    line-height: 27px;
  }
  .option {
    display: flex;
    align-items: center;
    margin: 10px 0;
  }
  .option input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ff6600;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
  }
  .option input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #ff6600;
    border-radius: 50%;
  }
  .bar {
    background-color: #ffffff0a;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    min-width: fit-content;
    transition: width 0.3s ease;
    white-space: nowrap;
    margin-left: 8px;
    border-radius: 8px;
  }
  .count {
    margin-left: 8px;
    color: #f26522b2;
    font-size: 12px;
    font-weight: 500;
  }
  .poll-container .poll-description {
    font-size: 17px;
    color: #ffffff;
    line-height: 23.07px;
  }
  .poll-footer {
    padding: 0;
    background: #2d2927;
    border: 2px solid #f265220f;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #f265220f;
    border-radius: 8px;
    width: 100%;
  }
  
  .poll-footer input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    background: transparent;
    height: 100%;
  }
  
  .poll-footer input:focus {
    outline: none;
  }
  
  .poll-footer img {
    cursor: pointer;
  }
  
  .btn-chat-mic {
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #f265220f;
    background: #2d2927;
    color: #f26522;
    transition: all 0.2s ease-in-out;
  }
  
  .btn-chat-mic:hover {
    color: white;
    background: #f26522;
  }
  
  .messages::-webkit-scrollbar {
    width: 5px;
  }
  
  .messages::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
  }
  
  .messages::-webkit-scrollbar-thumb {
    background: #f26522;
    border-radius: 10px;
  }
  
  .messages::-webkit-scrollbar-thumb:hover {
    background: #f26522;
  }
  
  /* poll/notice End */