.title-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .title-table th, .title-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .title-table th {
            background-color: #333;
            color: white;
        }
        
        .title-locked {
            color: #ff5252;
            font-weight: bold;
        }
        
        .title-unlocked {
            color: #4caf50;
            font-weight: bold;
        }
        
        .title-tabs {
            margin: 20px 0;
            display: flex;
            flex-wrap: wrap;
        }
        
        .title-tab-btn {
            padding: 10px 20px;
            margin-right: 10px;
            background-color: #444;
            color: white;
            border: none;
            cursor: pointer;
            border-radius: 4px;
        }
        
        .title-tab-btn.active {
            background-color: var(--primary);
        }
        
        .title-tab-content {
            display: none;
        }
        
        .title-tab-content.active {
            display: block;
        }