
.padding-b-30 {
  /* margin-bottom: 30px; */
}

.section-desc {
  font-size: 14px;
  color: #888888;
  font-weight: 300;
  margin-bottom: 0;
}

:root {
  --accent-color: #ffb300;
  --bg-color: #f8f9fa;
  --card-bg: #ffffff;
  --text-color: #333333;
  --text-light: #666666;
  --border-radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --hand-drawn-border: 2px dashed rgba(0, 0, 0, 0.1);
}

.bonusbox {
  /* background-color: var(--bg-color); */
  color: var(--text-color);
  margin: 0;
  padding: 16px;
  line-height: 1.5;
  min-height: 500px;
  margin-bottom: 30px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}

.header h1 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  position: relative;
  display: inline-block;
}

.header h1:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.filter-btn {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 16px;
  cursor: pointer;
}

.transaction-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.transaction-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 16px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
  border-left: 4px solid var(--accent-color);
  border-top: var(--hand-drawn-border);
}

.transaction-card:hover {
  transform: translateY(-2px);
}

.transaction-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.transaction-date {
  font-size: 14px;
  color: var(--text-light);
}

.transaction-category {
  font-size: 14px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 12px;
  background-color: rgba(255, 179, 0, 0.1);
  color: var(--accent-color);
}

.transaction-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.transaction-amount {
  font-size: 18px;
  font-weight: 600;
}

.transaction-amount.positive {
  color: var(--accent-color);
}

.transaction-amount.negative {
  color: #e53935;
}

.transaction-note {
  font-size: 14px;
  color: var(--text-light);
  max-width: 60%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-icon {
  margin-right: 8px;
  color: var(--accent-color);
}

.hand-drawn-line {
  position: absolute;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 16px;
  right: 16px;
  animation: drawLine 0.5s ease-out forwards;
}

@keyframes drawLine {
  from {
    width: 0;
  }

  to {
    width: calc(100% - 32px);
  }
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
}

.empty-state i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.hand-drawn-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: var(--hand-drawn-border);
  border-top: none;
  border-left: none;
}

.top-right {
  top: 0;
  right: 0;
  border-bottom-right-radius: var(--border-radius);
}

.bottom-left {
  bottom: 0;
  left: 0;
  border-top-left-radius: var(--border-radius);
}


.tab-nav {
    height: 40px;
    line-height: 40px;
    display: block;
    position: relative;
    background: #fff;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
}

.tab-nav-item {
    height: 40px;
    line-height: 40px;
    position: relative;
    text-align: center;
    color: #585858;
    font-size: 0.9rem;
    display: block;
    float: left;
    width: 20%;
}

.tab-nav-item.tab-active {
    /* background-color: #51bd03; */
}

.tab-nav-item.tab-active a {
    color: #ffb300;
    font-size: 0.85rem;
}

.tab-nav-item a {
    display: inherit;
    font-size: 0.85rem;
    color: #313038;
    font-weight:bold;
}

.tab-panel {
    position: relative;
    overflow: hidden;
}

.tab-panel .tab-panel-item {
    width: 100%;
    position: absolute;
    top: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.tab-panel .tab-panel-item.tab-active ~ .tab-panel-item {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.tab-panel .tab-panel-item.tab-active {
    position: relative;
    -webkit-transition: -webkit-transform .15s;
    transition: -webkit-transform .15s;
    transition: transform .15s;
    transition: transform .15s, -webkit-transform .15s;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.tab-nav-item.tab-active:before {
    content: '';
    width: 40%;
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -20%;
    z-index: 4;
    /* background-image: -webkit-gradient(linear,left top,right top,from(#ff6143),to(#ff1767));
    background-image: -webkit-linear-gradient(left,#ff6143,#ff1767);
    background-image: -moz-linear-gradient(left,#ff6143,#ff1767);
    background-image: linear-gradient(to right,#ff6143,#ff1767); */
    background-color: #ffb300;
    border-radius:5px 5px 0 0;
}

.contact-form .btn {
    height: auto;
}

label {
  font-size: 0.8em !important;
  color: #9e9e9e
}

input {
  color: inherit !important;
}