.card{
    border-radius: 1.3rem;
}
.card-header{
    padding:1.5rem;
}
.card-title{
    color:#504947;
    font-size:20px;
}
.table thead th{
    color:#3b3230;
    border-color:#e8d6d2;
}
.table tbody tr td{
    border-color: #f5eceb;
}
.sharp.btn-xs{
    width: 35px;
    height: 31px;
}
.btn-xs{
    font-size:1rem;
}

/* TODO: temposrc ayrı css'e taşınmalı */
.temposrc_container{
  margin: 0 auto;
  margin-bottom:50px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 30px 30px 0 30px;
  box-shadow: 
    0 12px 44px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  background: #FFF;
}
.temposrc h1 {
  color: rgb(50 52 55);
  margin-bottom: -9px;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.temposrc_search_container {
  position: relative;
}
.temposrc_search_box {
  width: 100%;
  padding: 24px 70px 24px 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 18px;
  font-weight: 400;
  outline: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  color: #2d3748;
}

.temposrc_search_box::placeholder {
  color: #a0aec0;
  font-weight: 400;
}

.temposrc_search_box:focus {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 
    0 0 0 4px rgba(255, 255, 255, 0.1),
    0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.95);
}

.temposrc_search_icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #feba2b 0%, #fe6e2b 50%, #fe2be3 100%);
  color: white;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.temposrc_search_icon:hover {
  transform: translateY(-50%) scale(1.05) rotate(5deg);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.temposrc_search_icon:active {
  transform: translateY(-50%) scale(0.95);
}