:root{
  /*  Colors */
  --typo-color-primary:#0E9493;
  --typo-color-secondary:#0A2540;
  --color-primary:#EF7310;
  --color-strock:#D4DEEB;
  --color-white:#ffffff;
  --color-black:#0A0C00;
  --light-orange:#FDF8F7;
  --mid-orange:#FCE3CF;
  --light-gray:#F1F5F9;
  --text-color:#404A62;
  --border-color:#E4DDD8;
  --light-ornage-border:#fdebde;
  --light-border:#3b3d33;
  --light-gray-border:#E6E6E6;
  --light-green-border:#0E949333;
  --red-color:rgb(241, 9, 9);
  --shadow-color:#ef73102e;
}

/* Typing indicator animation */
@keyframes typingBounce {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Online/Offline status */
.status-on-off {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-on-off.online {
  color: #28a745;
}

.status-on-off.offline {
  color: #6c757d;
}

/* Add a small indicator dot */

/* Message meta information styles */
.message-meta-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  font-size: 12px;
}

.message-time {
  color: var(--text-color);
  opacity: 0.7;
}

.read-receipt {
  font-size: 12px;
  margin-left: 8px;
}

.read-receipt.sent {
  color: var(--text-color);
  opacity: 0.6;
}

.read-receipt.read {
  color: var(--typo-color-primary);
  opacity: 0.8;
}

/* Attachments styling */
.attachments-list {
  margin-top: 8px;
}

.attachment-item {
  background: var(--light-gray);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 4px;
}

.attachment-item a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.attachment-item a:hover {
  text-decoration: underline;
}

/* Enhanced typing indicator */
.typing-indicator {
  padding: 10px 20px;
  text-align: left;
}

.typing-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background-color: var(--typo-color-primary);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.16s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.32s;
}

/* Sidebar with status */
.sidebar-with-status {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Connection status indicator in conversations */
.contact.online::before {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  border: 2px solid white;
}

.contact.offline::before {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background-color: #6b7280;
  border-radius: 50%;
  border: 2px solid white;
}

/* Real-time message highlight */
.chat-message.new-message {
  animation: messageHighlight 0.5s ease-out;
}

@keyframes messageHighlight {
  0% {
    background-color: rgba(14, 148, 147, 0.1);
    transform: translateX(-10px);
    opacity: 0.8;
  }
  100% {
    background-color: transparent;
    transform: translateX(0);
    opacity: 1;
  }
}
.status-on-off::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 4px;
}

.status-on-off.online::before {
  background-color: #28a745;
}

.status-on-off.offline::before {
  background-color: #6c757d;
}

.chat-frame-wrap {
width: 100%;
height: 92vh;
min-height: 300px;
max-height: 720px;
}

.chat-frame-wrap .content .contact-profile .user-name-chat {
  display: flex;
  flex-direction: column;
  padding-top: 9px;
}

.chat-frame-wrap .content .contact-profile .user-name-chat span.status-on-off {
  line-height: normal;
  font-size: 12px;
  color: #2ecc71;
}

.chat-frame-wrap .content .messages ul li div {
  display: flex;
  flex-direction: column;
  position: relative;
}

.chat-frame-wrap .content .messages ul li div span {
  position: absolute;
  bottom: -27px;
  color: var(--text-color);
}

.message-sending-status {
  font-size: 12px;
  position: absolute;
  right: -10px;
  top: 0;
}

.message-count {
  font-size: 10px;
  position: absolute;
  right: -10px;
  background-color: red;
  color: var(--color-white);
  padding: 3px;
  line-height: normal;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

@media screen and (max-width: 360px) {
.chat-frame-wrap {
  width: 100%;
  height: 100vh;
}
}
.chat-frame-wrap #sidepanel {
  float: left;
  min-width: 280px;
  max-width: 411px;
  width: 40%;
  height: 100%;
  background: var(--color-white);
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  border: solid 1px var(--border-plight);
}

.chat-frame-wrap #sidepanel .search-wrap {
    width: calc(100% - 40px);
    margin: 20px auto;
}

.chat-frame-wrap #sidepanel #profile {
width: 80%;
margin: 25px auto;
}
@media screen and (max-width: 735px) {
.chat-frame-wrap #sidepanel #profile {
  width: 100%;
  margin: 0 auto;
  padding: 5px 0 0 0;
  background: #32465a;
}
}
.chat-frame-wrap #sidepanel #profile.expanded .wrap {
height: 210px;
line-height: initial;
}
.chat-frame-wrap #sidepanel #profile.expanded .wrap p {
margin-top: 20px;
}
.chat-frame-wrap #sidepanel #profile.expanded .wrap i.expand-button {
-moz-transform: scaleY(-1);
-o-transform: scaleY(-1);
-webkit-transform: scaleY(-1);
transform: scaleY(-1);
filter: FlipH;
-ms-filter: "FlipH";
}
.chat-frame-wrap #sidepanel #profile .wrap {
height: 60px;
line-height: 60px;
overflow: hidden;
-moz-transition: 0.3s height ease;
-o-transition: 0.3s height ease;
-webkit-transition: 0.3s height ease;
transition: 0.3s height ease;
}
@media screen and (max-width: 735px) {
.chat-frame-wrap #sidepanel #profile .wrap {
  height: 55px;
}
}
.chat-frame-wrap #sidepanel #profile .wrap img {
width: 50px;
border-radius: 50%;
padding: 3px;
border: 2px solid #e74c3c;
height: auto;
float: left;
cursor: pointer;
-moz-transition: 0.3s border ease;
-o-transition: 0.3s border ease;
-webkit-transition: 0.3s border ease;
transition: 0.3s border ease;
}
@media screen and (max-width: 735px) {
.chat-frame-wrap #sidepanel #profile .wrap img {
  width: 40px;
  margin-left: 4px;
}
}
.chat-frame-wrap #sidepanel #profile .wrap img.online {
border: 2px solid #2ecc71;
}
.chat-frame-wrap #sidepanel #profile .wrap img.away {
border: 2px solid #f1c40f;
}
.chat-frame-wrap #sidepanel #profile .wrap img.busy {
border: 2px solid #e74c3c;
}
.chat-frame-wrap #sidepanel #profile .wrap img.offline {
border: 2px solid #95a5a6;
}
.chat-frame-wrap #sidepanel #profile .wrap p {
float: left;
margin-left: 15px;
}
@media screen and (max-width: 735px) {
.chat-frame-wrap #sidepanel #profile .wrap p {
  display: none;
}
}
.chat-frame-wrap #sidepanel #profile .wrap i.expand-button {
float: right;
margin-top: 23px;
font-size: 0.8em;
cursor: pointer;
color: #435f7a;
}
@media screen and (max-width: 735px) {
.chat-frame-wrap #sidepanel #profile .wrap i.expand-button {
  display: none;
}
}
.chat-frame-wrap #sidepanel #profile .wrap #status-options {
position: absolute;
opacity: 0;
visibility: hidden;
width: 150px;
margin: 70px 0 0 0;
border-radius: 6px;
z-index: 99;
line-height: initial;
background: #435f7a;
-moz-transition: 0.3s all ease;
-o-transition: 0.3s all ease;
-webkit-transition: 0.3s all ease;
transition: 0.3s all ease;
}
@media screen and (max-width: 735px) {
.chat-frame-wrap #sidepanel #profile .wrap #status-options {
  width: 58px;
  margin-top: 57px;
}
}
.chat-frame-wrap #sidepanel #profile .wrap #status-options.active {
opacity: 1;
visibility: visible;
margin: 75px 0 0 0;
}
@media screen and (max-width: 735px) {
.chat-frame-wrap #sidepanel #profile .wrap #status-options.active {
  margin-top: 62px;
}
}
.chat-frame-wrap #sidepanel #profile .wrap #status-options:before {
content: "";
position: absolute;
width: 0;
height: 0;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 8px solid #435f7a;
margin: -8px 0 0 24px;
}
@media screen and (max-width: 735px) {
.chat-frame-wrap #sidepanel #profile .wrap #status-options:before {
  margin-left: 23px;
}
}
.chat-frame-wrap #sidepanel #profile .wrap #status-options ul {
overflow: hidden;
border-radius: 6px;
}
.chat-frame-wrap #sidepanel #profile .wrap #status-options ul li {
padding: 15px 0 30px 18px;
display: block;
cursor: pointer;
}
@media screen and (max-width: 735px) {
.chat-frame-wrap #sidepanel #profile .wrap #status-options ul li {
  padding: 15px 0 35px 22px;
}
}
.chat-frame-wrap #sidepanel #profile .wrap #status-options ul li:hover {
background: #496886;
}
.chat-frame-wrap #sidepanel #profile .wrap #status-options ul li span.status-circle {
position: absolute;
width: 10px;
height: 10px;
border-radius: 50%;
margin: 5px 0 0 0;
}
@media screen and (max-width: 735px) {
.chat-frame-wrap #sidepanel #profile .wrap #status-options ul li span.status-circle {
  width: 14px;
  height: 14px;
}
}
.chat-frame-wrap
#sidepanel
#profile
.wrap
#status-options
ul
li
span.status-circle:before {
content: "";
position: absolute;
width: 14px;
height: 14px;
margin: -3px 0 0 -3px;
background: transparent;
border-radius: 50%;
z-index: 0;
}
@media screen and (max-width: 735px) {
.chat-frame-wrap
  #sidepanel
  #profile
  .wrap
  #status-options
  ul
  li
  span.status-circle:before {
  height: 18px;
  width: 18px;
}
}
.chat-frame-wrap #sidepanel #profile .wrap #status-options ul li p {
padding-left: 12px;
}
@media screen and (max-width: 735px) {
.chat-frame-wrap #sidepanel #profile .wrap #status-options ul li p {
  display: none;
}
}
.chat-frame-wrap
#sidepanel
#profile
.wrap
#status-options
ul
li#status-online
span.status-circle {
background: #2ecc71;
}
.chat-frame-wrap
#sidepanel
#profile
.wrap
#status-options
ul
li#status-online.active
span.status-circle:before {
border: 1px solid #2ecc71;
}
.chat-frame-wrap
#sidepanel
#profile
.wrap
#status-options
ul
li#status-away
span.status-circle {
background: #f1c40f;
}
.chat-frame-wrap
#sidepanel
#profile
.wrap
#status-options
ul
li#status-away.active
span.status-circle:before {
border: 1px solid #f1c40f;
}
.chat-frame-wrap
#sidepanel
#profile
.wrap
#status-options
ul
li#status-busy
span.status-circle {
background: #e74c3c;
}
.chat-frame-wrap
#sidepanel
#profile
.wrap
#status-options
ul
li#status-busy.active
span.status-circle:before {
border: 1px solid #e74c3c;
}
.chat-frame-wrap
#sidepanel
#profile
.wrap
#status-options
ul
li#status-offline
span.status-circle {
background: #95a5a6;
}
.chat-frame-wrap
#sidepanel
#profile
.wrap
#status-options
ul
li#status-offline.active
span.status-circle:before {
border: 1px solid #95a5a6;
}
.chat-frame-wrap #sidepanel #profile .wrap #expanded {
padding: 100px 0 0 0;
display: block;
line-height: initial !important;
}
.chat-frame-wrap #sidepanel #profile .wrap #expanded label {
float: left;
clear: both;
margin: 0 8px 5px 0;
padding: 5px 0;
}
.chat-frame-wrap #sidepanel #profile .wrap #expanded input {
border: none;
margin-bottom: 6px;
background: #32465a;
border-radius: 3px;
color: #f5f5f5;
padding: 7px;
width: calc(100% - 43px);
}
.chat-frame-wrap #sidepanel #profile .wrap #expanded input:focus {
outline: none;
background: #435f7a;
}

.chat-frame-wrap #sidepanel #search label {
position: absolute;
margin: 10px 0 0 20px;
}
.chat-frame-wrap #sidepanel #search input {
padding: 10px 10px 10px 46px;
width: 100%;
border: none;
background: var(--light-gray);
color: var(--text-color);
  border-radius: 8px;
}

.chat-frame-wrap #sidepanel #contacts {
height: calc(100% - 70px);
overflow-y: scroll;
overflow-x: hidden;
}
@media screen and (max-width: 735px) {
.chat-frame-wrap #sidepanel #contacts {
  overflow-y: scroll;
  overflow-x: hidden;
}
}
.chat-frame-wrap #sidepanel #contacts.expanded {
height: calc(100% - 334px);
}
.chat-frame-wrap #sidepanel #contacts::-webkit-scrollbar {
width: 8px;
background: var(--light-gray-border);
border-radius: 50px;
}
.chat-frame-wrap #sidepanel #contacts::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50px;
}
.chat-frame-wrap #sidepanel #contacts ul li.contact {
  position: relative;
  padding: 10px 0 15px 0;
  font-size: 0.9em;
  cursor: pointer;
}
.chat-frame-wrap #sidepanel #contacts ul li:not(:last-child){
  border-bottom: solid 1px var(--light-gray);
}
@media screen and (max-width: 735px) {
.chat-frame-wrap #sidepanel #contacts ul li.contact {
  padding: 6px 25px 6px 8px;
}
}
.chat-frame-wrap #sidepanel #contacts ul li.contact:hover {
  background: var(--mid-orange);
}
.chat-frame-wrap #sidepanel #contacts ul li.contact.active {
background: var(--mid-orange);
border-left: 5px solid var(--color-primary);
}

.chat-frame-wrap #sidepanel #contacts ul li.contact .wrap {
width: 88%;
margin: 0 auto;
position: relative;
display: flex;
align-items: center;
}
@media screen and (max-width: 735px) {
.chat-frame-wrap #sidepanel #contacts ul li.contact .wrap {
  width: 100%;
  gap: 10px;
}
}
.chat-frame-wrap #sidepanel #contacts ul li.contact .wrap span {
position: absolute;
left: 0;
top: 15px;
margin: -2px 0 0 -2px;
width: 10px;
height: 10px;
border-radius: 50%;
}
.chat-frame-wrap #sidepanel #contacts ul li.contact .wrap span.online {
background: #2ecc71;
}
.chat-frame-wrap #sidepanel #contacts ul li.contact .wrap span.away {
background: #f1c40f;
}
.chat-frame-wrap #sidepanel #contacts ul li.contact .wrap span.busy {
background: #e74c3c;
}
.chat-frame-wrap #sidepanel #contacts ul li.contact .wrap img {
width: 40px;
border-radius: 50%;
float: left;
margin-right: 10px;
}
@media screen and (max-width: 735px) {
.chat-frame-wrap #sidepanel #contacts ul li.contact .wrap img {
  margin-right: 0px;
}
}
.chat-frame-wrap #sidepanel #contacts ul li.contact .wrap .meta {
padding: 5px 30px 0 0;
}

.chat-frame-wrap #sidepanel #contacts ul li.contact .wrap .meta .name {
  line-height: 24px;
  font-weight: 600;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.chat-frame-wrap #sidepanel #contacts ul li.contact .wrap .meta .preview {
  font-size: 12px;
margin:0;
padding: 0 0 1px;
font-weight: 400;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
}
.chat-frame-wrap #sidepanel #contacts ul li.contact .wrap .meta .preview span {
position: initial;
border-radius: initial;
background: none;
border: none;
padding: 0 2px 0 0;
margin: 0 0 0 1px;
opacity: 0.5;
}

.chat-frame-wrap .content {
  float: right;
  width: 60%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: var(--color-white);
  border-radius: 10px;
  border: solid 1px var(--border-plight);
}

.chat-file-upload{
  cursor: pointer;
}

.chat-file-upload input#fileupload {
  opacity: 0;
  width: 20px;
  position: absolute;
  cursor: pointer;
}

.chat-frame-wrap .content .messages ul li.replies {
  display: flex;
  align-items: flex-end;
  justify-content: end;
  flex-direction: row-reverse;
  margin-bottom: 2rem !important;
}

.chat-frame-wrap .content .messages ul li.replies div {
  flex-direction: row-reverse;
}

.chat-frame-wrap .content .messages ul li.sent {
  display: flex;
  align-items: flex-end;
  justify-content: start;
  margin-bottom: 1rem !important;
}

@media screen and (max-width: 735px) {
.chat-frame-wrap .content {
  width: calc(100% - 58px);
  min-width: 300px !important;
}
}
.chat-frame-wrap .content .contact-profile {
  width: calc(100% - 40px);
  margin: 20px auto;
  height: 60px;
  line-height: 60px;
  background: var(--light-gray);
  border-radius: 10px;
  margin-bottom: 1rem;
}
.chat-frame-wrap .content .contact-profile img {
width: 40px;
border-radius: 50%;
float: left;
margin: 9px 12px 0 9px;
border: 2px solid var(--color-white);
}
.chat-frame-wrap .content .contact-profile p {
  font-weight: 600;
float: left;
margin: 0;
}
.chat-frame-wrap .content .contact-profile .social-media {
float: right;
}
.chat-frame-wrap .content .contact-profile .social-media i {
margin-left: 14px;
cursor: pointer;
}
.chat-frame-wrap .content .contact-profile .social-media i:nth-last-child(1) {
margin-right: 20px;
}
.chat-frame-wrap .content .contact-profile .social-media i:hover {
color: #435f7a;
}
.chat-frame-wrap .content .messages {
height: calc(100% - 175px);
overflow-y: auto;
overflow-x: hidden;
scroll-behavior: smooth;
}

/* Adjust messages height when bid header is present */
.chat-frame-wrap .content:has(.bid-action-header) .messages {
height: calc(100% - 240px);
}

@media screen and (max-width: 735px) {
.chat-frame-wrap .content .messages {
  height: calc(100% - 105px);
}

.chat-frame-wrap .content:has(.bid-action-header) .messages {
  height: calc(100% - 170px);
}
}
.chat-frame-wrap .content .messages::-webkit-scrollbar {
width: 8px;
background: var(--light-gray-border);
border-radius: 50px;
}
.chat-frame-wrap .content .messages::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.3);
border-radius: 50px;
}
.chat-frame-wrap .content .messages ul li {
display: inline-block;
clear: both;
float: left;
margin: 15px 15px 5px 15px;
width: calc(100% - 25px);
font-size: 0.9em;
}
.chat-frame-wrap .content .messages ul li:nth-last-child(1) {
margin-bottom: 20px;
}
.chat-frame-wrap .content .messages ul li.sent img {
margin: 6px 8px 0 0;
}
.chat-frame-wrap .content .messages ul li.sent p {
background: var(--light-gray);
color: var(--text-color);
border-radius: 10px 10px 10px 0;
min-width: 60px;
}
.chat-frame-wrap .content .messages ul li.replies img {
float: right;
margin: 6px 0 0 8px;
}
.chat-frame-wrap .content .messages ul li.replies p {
  background: var(--mid-orange);
  float: right;
  border-radius: 20px 20px 0;
  min-width: 60px;
}
.chat-frame-wrap .content .messages ul li img {
width: 30px;
border-radius: 50%;
float: left;
}
.chat-frame-wrap .content .messages ul li p {
display: inline-block;
padding: 10px 15px;
border-radius: 20px;
max-width: 205px;
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
}
@media screen and (min-width: 735px) {
.chat-frame-wrap .content .messages ul li p {
  max-width: 600px;
}
}
.chat-frame-wrap .content .message-input {
  position: absolute;
  bottom: 0;
  left: 0;
  width:100%;
  z-index:9;
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 0;
}
.chat-frame-wrap .content .message-input .wrap {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  justify-content: space-between;
  padding: 8px 15px;
  border-radius: 8px;
}
.chat-frame-wrap .content .message-input .wrap input {
float: left;
border: none;
width: calc(100% - 90px);
padding: 0;
font-size: 14px;
color: var(--text-color);
}
@media screen and (max-width: 735px) {
.chat-frame-wrap .content .message-input .wrap input {
  padding: 15px 32px 16px 8px;
}
}
.chat-frame-wrap .content .message-input .wrap input:focus {
outline: none;
}
.chat-frame-wrap .content .message-input .wrap .attachment {
position: absolute;
right: 60px;
z-index: 4;
margin-top: 10px;
font-size: 1.1em;
color: #435f7a;
opacity: 0.5;
cursor: pointer;
}
@media screen and (max-width: 735px) {
.chat-frame-wrap .content .message-input .wrap .attachment {
  margin-top: 17px;
  right: 65px;
}
}
.chat-frame-wrap .content .message-input .wrap .attachment:hover {
opacity: 1;
}
.chat-frame-wrap .content .message-input .wrap button {
  float: right;
  border: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  color: #f5f5f5;
}
@media screen and (max-width: 735px) {
.chat-frame-wrap .content .message-input .wrap button {
  padding: 16px 0;
}
}
.chat-frame-wrap .content .message-input .wrap button:hover {
opacity: .8;
}
.chat-frame-wrap .content .message-input .wrap button:focus {
outline: none;
}


.back-button {
  padding: 20px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.back-button .back-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-weight: 500;
  background: transparent;
  border: none;
  text-decoration: none;
}
.page-title h2 {
    font-size: var(--font-large);
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 37px;
}
.profile-wrapper {
  padding-bottom: 120px;
}

/* Bid Action Header Styles */
.bid-action-header {
  background: var(--light-gray);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 20px;
  margin: 0;
}

.bid-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.bid-details h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--color-black);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bid-amount {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bid-amount .price {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
}

.bid-amount .duration {
  font-size: 14px;
  color: var(--text-color);
  background: var(--color-white);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.bid-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.btn-accept {
  background: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-accept:hover {
  background: #d15807;
  border-color: #d15807;
}

.btn-accept:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-reject {
  background: transparent;
  color: #dc3545;
  border: 1px solid #dc3545;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-reject:hover {
  background: #dc3545;
  color: var(--color-white);
}

.btn-reject:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.bid-status-badge {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  min-width: 120px;
}

.bid-status-badge.accepted {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.bid-status-badge.rejected {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .bid-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .bid-amount {
    justify-content: space-between;
    width: 100%;
  }
  
  .bid-actions {
    width: 100%;
    justify-content: flex-end;
  }
  
  .bid-status-badge {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .bid-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-accept,
  .btn-reject {
    width: 100%;
    text-align: center;
  }
}