Spaces:
				
			
			
	
			
			
		Paused
		
	
	
	
			
			
	
	
	
	
		
		
		Paused
		
	File size: 1,695 Bytes
			
			| ca23205 f655fab | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | // Tab içeriği için padding
.mat-tab-body-content {
  padding: 24px;
}
.app-container {
  padding: 20px;
  min-height: 100vh;
  background-color: #f5f5f5;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  h1 {
    margin: 0;
    color: #333;
    font-size: 24px;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    .user-info {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #666;
      mat-icon {
        font-size: 20px;
      }
    }
    button {
      mat-icon {
        margin-right: 4px;
      }
    }
  }
}
.main-content {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  overflow: hidden;
  mat-tab-group {
    ::ng-deep {
      .mat-tab-header {
        background-color: #fafafa;
        border-bottom: 1px solid #e0e0e0;
      }
      .mat-tab-label {
        min-width: 120px;
        opacity: 0.8;
        &.mat-tab-label-active {
          opacity: 1;
          font-weight: 500;
        }
      }
      .mat-tab-body-wrapper {
        padding: 24px;
      }
    }
  }
}
// Responsive adjustments
@media (max-width: 768px) {
  .app-container {
    padding: 10px;
  }
  .header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    h1 {
      font-size: 20px;
    }
  }
  .main-content {
    mat-tab-group ::ng-deep .mat-tab-body-wrapper {
      padding: 16px;
    }
  }
} | 
