.data-caculator {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 6rem;
}

.text-note {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

/* Profile Cards */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.profile-card {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.profile-card:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.profile-card.active {
  border-color: #3b82f6;
  border-width: 3px;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.profile-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-content {
  padding: 1.25rem;
}

.profile-icon {
  width: 48px;
  height: 48px;
  background: #f3f4f6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 24px;
  color: #3b82f6;
}

.profile-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #1a1a1a;
}

.profile-desc {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Activity Cards */
.left-cart {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
}

.activity-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.activity-row:last-child {
  border-bottom: none;
}

.activity-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.activity-desc {
  color: #666;
  font-size: 14px;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.preset-btn {
  padding: 0.5rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  font-weight: 500;
  margin-right: 0.5rem;
}

.preset-btn:hover {
  border-color: #3b82f6;
  background: #eff6ff;
}

.preset-btn.active {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.hours-input {
  width: 100px;
  padding: 0.5rem 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s;
  text-align: center;
}

.hours-input:focus {
  outline: none;
  border-color: #3b82f6;
}

/* Right Chart Section */
.right-cart {
  background: white;
  border-radius: 12px;
  position: sticky;
  top: 1rem;
}

.chart-wrap {
  position: relative;
  height: 280px;
  padding: 0 2rem;
}

.chart-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.chart-center .label {
  font-size: 14px;
  color: #666;
  margin-bottom: 0.25rem;
}

.chart-center .value {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
}

.legend {
  padding: 1.5rem 2rem;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}


.color-dot {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  margin-right: 3px;
  flex-shrink: 0;
}

.legend-text {
  font-size: 8px;
  color: #1a1a1a;
}

.controls {
  padding: 0 2rem;
}

.reset-btn {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* Guide Section */
.guide {
  max-width: 1200px;
  margin: 0px auto !important;
  padding: 2rem 6rem 4rem 6rem;
}

.guide h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.guide p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1.5rem;
}

.guide-container {
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.guide-header {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0.5rem;
  font-weight: 600;
  color: #1a1a1a;
  border-bottom: 2px solid #e5e7eb;
}

.guide-row {
  display: grid;
  grid-template-columns: 1fr 180px;
  padding: 1rem 0px;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}

.guide-row:last-child {
  border-bottom: none;
}

.guide-activity-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.guide-icon {
  font-size: 20px;
  color: #3b82f6;
}

.guide-data-cell {
  text-align: right;
  font-weight: 500;
  color: #1a1a1a;
}
.data-usage-calculator-page {
  background: linear-gradient(to bottom, #fff8f0, #ffe8d6 60%, #ffd7b8);
}
/* Data Plan Section */
.data-plan-section {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 16px;
}

.plan-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.plan-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 16px;
  transition: all 0.2s;
}

.plan-select-wrap:hover {
  border-color: #3b82f6;
  background: #fff;
}

.flag-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
}

.plan-select {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  color: #1f2937;
  font-weight: 500;
  outline: none;
  cursor: pointer;
}

.plan-select option {
  padding: 8px;
}

.plan-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e40af;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.set-text{
  font-size: 14px !important;
  color: rgb(0, 0, 0) !important;
  margin-bottom: 8px !important ;
}
.suggest-form{
    border-radius: 10px;
    border: 1px solid var(--color-border-form);
}
.suggest-form:hover{
  border-color: #999;
  background-color: #E2E2E4;
}
.img-suggest-package{
  max-width: 20px !important;
  height: auto ;
  object-fit: contain;
}
@media (max-width: 768px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .guide-header,
  .guide-row {
    grid-template-columns: 1fr 120px;
    padding: 0.75rem 1rem;
  }
}
@media(min-width: 1280px){

.preset-btn{
  min-width: 70px;
}
}
@media(max-width: 576px){
  .data-caculator{
    padding: 1.5rem 1rem;
  }
  .guide{
    padding: 1.5rem 1rem ;
  }
  .preset-btn {
    padding: 0.5rem 0.5rem;
    margin-bottom: 5px;
  }
  .profile-image{
    display: none;
  }
  .profile-icon {
    margin-right: 8px;
  }
}
@media(min-width: 576px) and (max-width: 768px) {
  .data-caculator{
    padding: 1.5rem 2rem;
  }
}